home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_01 / 8n01088a < prev    next >
Text File  |  1990-02-19  |  213b  |  12 lines

  1. *** Listing 1 ***
  2. /*
  3.  * write the definition for size_t
  4.  */
  5. #include <stdio.h>
  6.  
  7. main()
  8.     {
  9.     printf("typedef unsigned%s size_t;\n",
  10.         sizeof(sizeof(int)) == sizeof(int) ? "" : " long");
  11.     }
  12.