diff -r 9ccffb7d7d5b -r 8e545faf3d80 src/win32/libc_interface.h --- a/src/win32/libc_interface.h Fri Apr 11 21:23:02 2003 +0000 +++ b/src/win32/libc_interface.h Sat Apr 12 00:10:45 2003 +0000 @@ -93,4 +93,9 @@ #define mkdir(a,b) _mkdir((a)) #define fchmod(a,b) +/* time.h */ +extern struct tm *wgaim_localtime_r(const time_t *time, struct tm *resultp); +#define localtime_r( time, resultp ) \ +wgaim_localtime_r( ## time ##, ## resultp ## ) + #endif /* _LIBC_INTERFACE_H_ */