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>
7 * Should be installed into /usr/include
11 typedef char * caddr_t
;
13 typedef unsigned char u_int8_t
;
14 typedef short int16_t;
15 typedef unsigned short u_int16_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
;
22 #include <sys/types.h>
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 */