mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 16:11:40 +00:00
8 lines
143 B
C
8 lines
143 B
C
#include <sys/time.h>
|
|
#include "syscall.h"
|
|
|
|
int settimeofday(const struct timeval *tv, void *tz)
|
|
{
|
|
return syscall(SYS_settimeofday, tv, 0);
|
|
}
|