00001 #ifndef _BITS_STDINT_H 00002 #define _BITS_STDINT_H 00003 00004 FILE_LICENCE ( GPL2_OR_LATER ); 00005 00006 typedef __SIZE_TYPE__ size_t; 00007 typedef signed long ssize_t; 00008 typedef signed long off_t; 00009 00010 typedef unsigned char uint8_t; 00011 typedef unsigned short uint16_t; 00012 typedef unsigned int uint32_t; 00013 typedef unsigned long long uint64_t; 00014 00015 typedef signed char int8_t; 00016 typedef signed short int16_t; 00017 typedef signed int int32_t; 00018 typedef signed long long int64_t; 00019 00020 typedef unsigned long physaddr_t; 00021 typedef unsigned long intptr_t; 00022 00023 #endif /* _BITS_STDINT_H */
1.5.7.1