__stdlib.h
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 0k
Category:

MySQL

Development Platform:

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