4287
|
1 #ifndef _CYGWIN_INTTYPES_H
|
|
2 #define _CYGWIN_INTTYPES_H
|
|
3 /* /usr/include/inttypes.h for CYGWIN
|
|
4 * Copyleft 2001-2002 by Felix Buenemann
|
|
5 * <atmosfear at users.sourceforge.net>
|
|
6 *
|
|
7 * Should be installed into /usr/include
|
|
8 * as inttypes.h
|
|
9 */
|
|
10 #if 0
|
|
11 typedef char * caddr_t;
|
|
12 typedef char int8_t;
|
|
13 typedef unsigned char u_int8_t;
|
|
14 typedef short int16_t;
|
|
15 typedef unsigned short u_int16_t;
|
|
16 typedef int int32_t;
|
|
17 typedef unsigned int u_int32_t;
|
|
18 typedef long long int64_t;
|
|
19 typedef unsigned long long u_int64_t;
|
|
20 typedef int32_t register_t;
|
|
21 #else
|
|
22 #include <sys/types.h>
|
|
23 #endif /* 0/1 */
|
|
24 typedef u_int8_t uint8_t;
|
|
25 typedef u_int16_t uint16_t;
|
|
26 typedef u_int32_t uint32_t;
|
|
27 typedef u_int64_t uint64_t;
|
|
28 #endif /* _CYGWIN_INTTYPES_H */
|
|
29
|