home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / lib / g++-include / stddef < prev    next >
Text File  |  1994-12-22  |  406b  |  25 lines

  1. // The -*- C++ -*- standard definitions header.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __STDDEF__
  5. #define __STDDEF__
  6.  
  7. #ifdef __GNUG__
  8. #pragma interface "stddef"
  9. #endif
  10.  
  11. #include <_G_config.h>
  12. #include <cstddef>
  13.  
  14. const size_t NPOS = (size_t)(-1);
  15. typedef void fvoid_t();
  16.  
  17. #ifndef _WINT_T
  18. #define _WINT_T
  19. typedef _G_wint_t wint_t;
  20. #endif
  21.  
  22. enum capacity { default_size, reserve };
  23.  
  24. #endif
  25.