home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / source / make / localt_1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  164 b   |  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.