home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6574.LZX / include / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-04  |  390 b   |  26 lines

  1. /* Copyright (c) 1992-1993 SAS Institute, Inc., Cary, NC USA */
  2. /* All Rights Reserved */
  3.  
  4.  
  5. #ifndef _STDDEFH
  6. #define _STDDEFH 1
  7.  
  8. #ifndef _COMMSIZE_H
  9. #include <sys/commsize.h>
  10. #endif
  11.  
  12. #ifndef _COMMCHAR_H
  13. #include <sys/commchar.h>
  14. #endif
  15.  
  16. #ifndef _COMMNULL_H
  17. #include <sys/commnull.h>
  18. #endif
  19.  
  20. typedef long int ptrdiff_t;
  21.  
  22. #define offsetof(type,memb)  (size_t) &(((type *) 0L)->memb)
  23.  
  24. #endif
  25.  
  26.