home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / OTL-MC6.DMS / in.adf / incl.lha / INCLUDE / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-15  |  217 b   |  16 lines

  1. #ifndef _INCLUDE_STDDEF_H
  2. #define _INCLUDE_STDDEF_H
  3.  
  4. #ifndef NULL
  5. #define NULL 0
  6. #endif
  7.  
  8. #define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
  9.  
  10. typedef unsigned size_t;
  11. typedef int ptrdiff_t;
  12. typedef int wchar_t;
  13.  
  14. #endif
  15.  
  16.