__stdlib.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* $Id$ */
  2. #ifndef  __sys_stdtypes_h
  3. #ifndef _SYS___STDLIB_H_
  4. #define _SYS___STDLIB_H_
  5. #include <sys/stdtypes.h>   /* to get size_t */
  6. #if (! defined _SIZE_T_ ) && (! defined(_GCC_SIZE_T))
  7. #define _SIZE_T_
  8. #define _GCC_SIZE_T
  9. typedef pthread_size_t    size_t;
  10. #endif
  11. #if (! defined _WCHAR_T_ ) && (! defined(_GCC_WCHAR_T))
  12. #define _WCHAR_T_
  13. #define _GCC_WCHAR_T
  14. typedef unsigned int wchar_t;
  15. #endif
  16. #ifndef NULL
  17. #define NULL    0
  18. #endif
  19. #endif
  20. #endif