home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / apps / posix / source / MAKE / LOCALTIME.C < prev    next >
C/C++ Source or Header  |  1999-11-17  |  164b  |  12 lines

  1. #include <time.h>
  2.  
  3. /*
  4.     referenced C language routine not yet finished by microsoft
  5. */
  6. struct tm *localtime(arg) {
  7.     static struct tm 
  8.         t;
  9.  
  10.     return &t;
  11. }
  12.