home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / STDDEF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  672 b   |  40 lines

  1. /*    stddef.h
  2.  
  3.     Definitions for common types, NULL, and errno.
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #ifndef _STDDEF
  15. #define _STDDEF
  16. #ifndef _PTRDIFF_T
  17. #define _PTRDIFF_T
  18. #if    defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
  19. typedef long    ptrdiff_t;
  20. #else
  21. typedef int    ptrdiff_t;
  22. #endif
  23. #endif
  24. #ifndef _SIZE_T
  25. #define _SIZE_T
  26. typedef unsigned size_t;
  27. #endif
  28.  
  29. #ifndef NULL
  30. #if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
  31. #define NULL    0
  32. #else
  33. #define NULL    0L
  34. #endif
  35. #endif
  36.  
  37. extern    int    _Cdecl errno;
  38.  
  39. #endif
  40.