blob: 32c9877c708472fe92e51164fb77dac3cb65f35c [file] [log] [blame]
#define _BSD_SOURCE
#include <errno.h>
#include <sys/time.h>
int settimeofday(const struct timeval* tv, const struct timezone* tz) {
errno = ENOSYS;
return -1;
}