/* settimeofday.c */ #define stime _stime #include #include int settimeofday(const struct timeval *tp, const void *tzp) { /* Ignore time zones */ return stime(&tp->tv_sec); }