blob: 2ae9663a937825a6fecbdff33065b4e7570c328a [file] [log] [blame]
#define _GNU_SOURCE
#include <time.h>
#include <sys/time.h>
int stime(const time_t* t) {
struct timeval tv = {.tv_sec = *t, .tv_usec = 0};
return settimeofday(&tv, (void*)0);
}