00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #if defined( GNU_TYPES_CHECK )
00013 #if !defined(_GCC_PTRDIFF_T)
00014 #define _GCC_PTRDIFF_T
00015 typedef __PTRDIFF_TYPE__ ptrdiff_t;
00016 #endif
00017
00018 #if !defined(_GCC_SIZE_T)
00019 #define _GCC_SIZE_T
00020 typedef __SIZE_TYPE__ size_t;
00021 #endif
00022
00023 #ifndef __cplusplus
00024 #if !defined(_GCC_WCHAR_T) && ! defined(__cplusplus)
00025 #define _GCC_WCHAR_T
00026 typedef __WCHAR_TYPE__ wchar_t;
00027 #endif
00028
00029 #endif
00030 #endif