mirror of
https://github.com/fluencelabs/musl
synced 2025-06-02 01:21:34 +00:00
8 lines
139 B
C
8 lines
139 B
C
|
#include <sys/time.h>
|
||
|
|
||
|
int stime(time_t *t)
|
||
|
{
|
||
|
struct timeval tv = { .tv_sec = *t, .tv_usec = 0 };
|
||
|
return settimeofday(&tv, (void *)0);
|
||
|
}
|