home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-09  |  362 b   |  23 lines

  1.  
  2. /*
  3.  * $VER: stddef.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef STDDEF_H
  9. #define STDDEF_H
  10.  
  11. #ifndef NULL
  12. #define NULL    ((void *)0L)
  13. #endif
  14. #ifndef offsetof
  15. #define offsetof(sname,fname)    ((long)&((sname *)0)->fname)
  16. #endif
  17. typedef int ptrdiff_t;
  18. typedef unsigned int size_t;
  19. typedef char wchar_t;
  20.  
  21. #endif
  22.  
  23.