# HG changeset patch # User atmos4 # Date 1011553736 0 # Node ID 438345c64f3ae3d858ab800f6af771f2c0caf93c # Parent 05c2acdf6f91be42edf9a4098e40098e10d628e7 /usr//include/inttypes.h for CYGWIN diff -r 05c2acdf6f91 -r 438345c64f3a etc/cygwin_inttypes.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/etc/cygwin_inttypes.h Sun Jan 20 19:08:56 2002 +0000 @@ -0,0 +1,29 @@ +#ifndef _CYGWIN_INTTYPES_H +#define _CYGWIN_INTTYPES_H +/* /usr/include/inttypes.h for CYGWIN + * Copyleft 2001-2002 by Felix Buenemann + * + * + * Should be installed into /usr/include + * as inttypes.h + */ +#if 0 +typedef char * caddr_t; +typedef char int8_t; +typedef unsigned char u_int8_t; +typedef short int16_t; +typedef unsigned short u_int16_t; +typedef int int32_t; +typedef unsigned int u_int32_t; +typedef long long int64_t; +typedef unsigned long long u_int64_t; +typedef int32_t register_t; +#else +#include +#endif /* 0/1 */ +typedef u_int8_t uint8_t; +typedef u_int16_t uint16_t; +typedef u_int32_t uint32_t; +typedef u_int64_t uint64_t; +#endif /* _CYGWIN_INTTYPES_H */ +