home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / macutils.lzh / MACUTILS / UTIL / curtime.h < prev    next >
Text File  |  1995-10-18  |  240b  |  15 lines

  1. #ifdef TYPES_H
  2. #include <sys/types.h>
  3. #endif /* TYPES_H */
  4.  
  5. #ifdef BSD
  6. #include <sys/time.h>
  7. extern time_t time();
  8. #else /* BSD */
  9. #include <time.h>
  10. #endif /* BSD */
  11.  
  12. /* Mac time of 00:00:00 GMT, Jan 1, 1970 */
  13. #define TIMEDIFF 0x7c25b080
  14.  
  15.