blob: 52c32e03f85f6f8c7c5c9b33e5bed0f7dd8094df [file] [log] [blame]
#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);
}