Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00024 #ifndef __STDINT_H__
00025 #define __STDINT_H__
00026
00027 #ifdef __C51__
00028
00029 typedef unsigned char uint8_t;
00030
00031 typedef signed char int8_t;
00032
00033 typedef unsigned int uint16_t;
00034
00035 typedef signed int int16_t;
00036
00037 typedef unsigned long uint32_t;
00038
00039 typedef signed long int32_t;
00040
00041 #endif // __C51__
00042
00043 #ifndef NULL
00044 #define NULL (void*)0
00045 #endif
00046
00047 #endif // __STDINT_H__