home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / STORM2.DMS / in.adf / Includes.LHA / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-28  |  351 b   |  24 lines

  1. #ifndef _INCLUDE_STDDEF_H
  2. #define _INCLUDE_STDDEF_H
  3.  
  4. /*
  5. **  $VER: stddef.h 10.1 (19.7.95)
  6. **  Includes Release 40.15
  7. **
  8. **  (C) Copyright 1995 Haage & Partner
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifndef NULL
  13. #define NULL 0
  14. #endif
  15.  
  16. #define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
  17.  
  18. typedef unsigned size_t;
  19. typedef int ptrdiff_t;
  20. typedef int wchar_t;
  21.  
  22. #endif
  23.  
  24.