[RTL] Partially sync some timer queue related functions with Wine Staging 1.7.55...
[reactos.git] / rossubsys / posix / include / inttypes.h
1 /* $Id: inttypes.h,v 1.4 2002/10/29 04:45:10 rex Exp $
2 */
3 /*
4 * inttypes.h
5 *
6 * fixed size integral types. Conforming to the Single UNIX(r) Specification
7 * Version 2, System Interface & Headers Issue 5
8 *
9 * This file is part of the ReactOS Operating System.
10 *
11 * Contributors:
12 * Created by KJK::Hyperion <noog@libero.it>
13 *
14 * THIS SOFTWARE IS NOT COPYRIGHTED
15 *
16 * This source code is offered for use in the public domain. You may
17 * use, modify or distribute it freely.
18 *
19 * This code is distributed in the hope that it will be useful but
20 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
21 * DISCLAMED. This includes but is not limited to warranties of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 *
24 */
25 #ifndef __INTTYPES_H_INCLUDED__
26 #define __INTTYPES_H_INCLUDED__
27
28 /* INCLUDES */
29
30 /* OBJECTS */
31
32 /* TYPES */
33 /* signed */
34 typedef signed char int8_t; /* 8-bit signed integral type. */
35 typedef signed short int int16_t; /* 16-bit signed integral type. */
36 typedef signed long int int32_t; /* 32-bit signed integral type. */
37 typedef signed long long int64_t; /* 64-bit signed integral type. */
38
39 /* unsigned */
40 typedef unsigned char uint8_t; /* 8-bit unsigned integral type. */
41 typedef unsigned short int uint16_t; /* 16-bit unsigned integral type. */
42 typedef unsigned long int uint32_t; /* 32-bit unsigned integral type. */
43 typedef unsigned long long uint64_t; /* 64-bit unsigned integral type. */
44
45 /* pointer-sized */
46 typedef signed long int intptr_t; /* Signed integral type large enough
47 to hold any pointer. */
48 typedef unsigned long int uintptr_t; /* Unsigned integral type large
49 enough to hold any pointer. */
50
51 /* CONSTANTS */
52
53 /* PROTOTYPES */
54
55 /* MACROS */
56
57 #endif /* __INTTYPES_H_INCLUDED__ */
58
59 /* EOF */
60