mirror of
https://github.com/fluencelabs/musl
synced 2025-06-04 02:21:36 +00:00
8 lines
151 B
C
8 lines
151 B
C
|
#include <sys/time.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int settimeofday(const struct timeval *tv, void *tz)
|
||
|
{
|
||
|
return syscall2(__NR_settimeofday, (long)tv, 0);
|
||
|
}
|