home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 1101016A < prev    next >
Text File  |  1992-11-09  |  148b  |  9 lines

  1. /* clock function -- simple version */
  2. #include <time.h>
  3.  
  4. clock_t (clock)(void)
  5.     {    /* return CPU time */
  6.     return ((clock_t)time(NULL));
  7.     }
  8.  
  9.