slightly more accurate and verbose sanity checking
[minix3.git] / lib / other / settimeofday.c
blob956135a38238775a5b78038f8691553bf124b9df
1 /*
2 settimeofday.c
3 */
5 #define stime _stime
7 #include <sys/time.h>
8 #include <time.h>
10 int settimeofday(const struct timeval *tp, const void *tzp)
12 /* Ignore time zones */
13 return stime(&tp->tv_sec);