blob: 8e7543bdd039b1c1efdb6f362c6e2abd3f0fb2a3 [file] [log] [blame]
#define _GNU_SOURCE
#include <errno.h>
#include <sys/time.h>
int adjtime(const struct timeval* in, struct timeval* out) {
// TODO(kulakowski) implement adjtime(x)
errno = ENOSYS;
return -1;
}