musl-tcc/src/linux/stime.c

10 lines
183 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#define _GNU_SOURCE
#include <time.h>
#include <sys/time.h>
int stime(const time_t *t)
{
struct timeval tv = { .tv_sec = *t, .tv_usec = 0 };
return settimeofday(&tv, (void *)0);
}