home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c329 / 2.img / INCL_A / STDDEF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-19  |  294 b   |  14 lines

  1. /*  stddef.h
  2.  *  ANSI C Runtime Library
  3.  */
  4.  
  5. #ifndef _STDDEF_H
  6. #define _STDDEF_H
  7. typedef int ptrdiff_t;
  8. typedef unsigned int size_t;
  9.  
  10. #define NULL    0
  11. #define UNKNOWN    -1
  12. #define offsetof(type,id)     ( ((char *) &(((type *) NULL)->id)) - ((char *) NULL) )
  13. #endif  /* _STDDEF_H */
  14.