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