home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / cstddef < prev    next >
Text File  |  1998-06-16  |  416b  |  22 lines

  1. // cstddef standard header
  2.  
  3. #if     _MSC_VER > 1000
  4. #pragma once
  5. #endif
  6.  
  7. #ifndef _CSTDDEF_
  8. #define _CSTDDEF_
  9. #ifdef _STD_USING
  10.  #undef _STD_USING
  11.  #include <stddef.h>
  12.  #define _STD_USING
  13. #else
  14.  #include <stddef.h>
  15. #endif /* _STD_USING */
  16. #endif /* _CSTDDEF_ */
  17.  
  18. /*
  19.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  20.  * Consult your license regarding permissions and restrictions.
  21.  */
  22.