diff options
Diffstat (limited to 'libc/misc/time/gmtime.c')
-rw-r--r-- | libc/misc/time/gmtime.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/libc/misc/time/gmtime.c b/libc/misc/time/gmtime.c index 69d539392..03cc9d56c 100644 --- a/libc/misc/time/gmtime.c +++ b/libc/misc/time/gmtime.c @@ -3,14 +3,12 @@ extern void __tm_conv(); -struct tm * -gmtime(timep) -__const time_t * timep; +struct tm *gmtime(timep) +__const time_t *timep; { - static struct tm tmb; + static struct tm tmb; - __tm_conv(&tmb, timep, 0L); + __tm_conv(&tmb, timep, 0L); - return &tmb; + return &tmb; } - |