home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / TIME / LOCALTIM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  261 b   |  14 lines

  1. /* localtim.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <time.h>
  5.  
  6. struct tm *localtime (const time_t *t)
  7. {
  8.   time_t lt;
  9.  
  10.   if (!_tzset_flag) tzset ();
  11.   lt = *t - timezone;
  12.   return (gmtime (<));
  13. }
  14.