home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
W2KPRK.iso
/
apps
/
posix
/
source
/
MAKE
/
LOCALTIME.C
< prev
next >
Wrap
C/C++ Source or Header
|
1999-11-17
|
164b
|
12 lines
#include <time.h>
/*
referenced C language routine not yet finished by microsoft
*/
struct tm *localtime(arg) {
static struct tm
t;
return &t;
}