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

MySQL数据库

开发平台:

Visual C++

  1. #include <sgidefs.h>
  2. #if !defined(_SIZE_T) && !defined(_SIZE_T_)
  3. #define _SIZE_T
  4. #if (_MIPS_SZLONG == 32)
  5. typedef unsigned int    size_t;
  6. #endif
  7. #if (_MIPS_SZLONG == 64)
  8. typedef unsigned long   size_t;
  9. #endif
  10. #endif
  11. #ifndef _WCHAR_T
  12. #define _WCHAR_T
  13. #if (_MIPS_SZLONG == 32)
  14. typedef long wchar_t;
  15. #endif
  16. #if (_MIPS_SZLONG == 64)
  17. typedef __int32_t wchar_t;
  18. #endif
  19. #endif
  20. #ifndef __NORETURN
  21. #define __NORETURN
  22. #endif
  23. #ifndef NULL
  24. #define NULL    0
  25. #endif