fix TLS layout of TLS variant I when there is a gap above TP
[musl] / src / time / time.c
1 #include <time.h>
2 #include "syscall.h"
3
4 int __clock_gettime(clockid_t, struct timespec *);
5
6 time_t time(time_t *t)
7 {
8         struct timespec ts;
9         __clock_gettime(CLOCK_REALTIME, &ts);
10         if (t) *t = ts.tv_sec;
11         return ts.tv_sec;
12 }