home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1999 February / MACPOWER-1999-02.ISO.7z / MACPOWER-1999-02.ISO / 9902⁄AMUG / UTILITY / mac06-0.95.sit / mac06-0.95 / home / demo / src / Aliases / include / stddef.h < prev    next >
Text File  |  1998-08-01  |  242b  |  17 lines

  1. /* mac06ゥ1997,98 by HNS/DSITRI hns@computer.org
  2. ** stddef.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. #include "size_t.h"
  8. #include "wchar_t.h"
  9.  
  10. #ifndef NULL
  11. #define NULL    (0)
  12. #endif
  13. #define offsetof(s, x) (ptrdiff_t) &(((s *) 0)->x)
  14.  
  15. typedef int ptrdiff_t;
  16.  
  17. /* EOF */