/usr//include/inttypes.h for CYGWIN

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4288 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-01-20 19:08:56 +00:00
parent 889ffcd6c0
commit ef87ddc7a9
1 changed files with 29 additions and 0 deletions

29
etc/cygwin_inttypes.h Normal file
View File

@ -0,0 +1,29 @@
#ifndef _CYGWIN_INTTYPES_H
#define _CYGWIN_INTTYPES_H
/* /usr/include/inttypes.h for CYGWIN
* Copyleft 2001-2002 by Felix Buenemann
* <atmosfear at users.sourceforge.net>
*
* 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 <sys/types.h>
#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 */