mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 03:30:29 +00:00
10 lines
145 B
C
10 lines
145 B
C
#include <time.h>
|
|
|
|
extern long __gmtoffset;
|
|
|
|
struct tm *localtime(const time_t *t)
|
|
{ time_t ti=*t;
|
|
ti-=__gmtoffset*60;
|
|
return gmtime(&ti);
|
|
}
|