summaryrefslogtreecommitdiff
path: root/libc/misc/time/localtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/time/localtime.c')
-rw-r--r--libc/misc/time/localtime.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/libc/misc/time/localtime.c b/libc/misc/time/localtime.c
index 9d9b46d15..1f538ab7a 100644
--- a/libc/misc/time/localtime.c
+++ b/libc/misc/time/localtime.c
@@ -3,20 +3,19 @@
extern void __tm_conv();
-struct tm *
-localtime(timep)
-__const time_t * timep;
+struct tm *localtime(timep)
+__const time_t *timep;
{
- static struct tm tmb;
- struct timezone tz;
- time_t offt;
+ static struct tm tmb;
+ struct timezone tz;
+ time_t offt;
- gettimeofday((void*)0, &tz);
+ gettimeofday((void *) 0, &tz);
- offt = -tz.tz_minuteswest*60L;
+ offt = -tz.tz_minuteswest * 60L;
- /* tmb.tm_isdst = ? */
- __tm_conv(&tmb, timep, offt);
+ /* tmb.tm_isdst = ? */
+ __tm_conv(&tmb, timep, offt);
- return &tmb;
+ return &tmb;
}