mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 10:01:38 +00:00
9 lines
180 B
C
9 lines
180 B
C
#define _BSD_SOURCE
|
|
#include <sys/time.h>
|
|
#include "syscall.h"
|
|
|
|
int settimeofday(const struct timeval *tv, const struct timezone *tz)
|
|
{
|
|
return syscall(SYS_settimeofday, tv, 0);
|
|
}
|