mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 08:01:38 +00:00
9 lines
159 B
C
9 lines
159 B
C
#define _GNU_SOURCE
|
|
#include <sys/time.h>
|
|
|
|
int stime(time_t *t)
|
|
{
|
|
struct timeval tv = { .tv_sec = *t, .tv_usec = 0 };
|
|
return settimeofday(&tv, (void *)0);
|
|
}
|