X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fsys%2Ftime.h;h=3ce824e63db0158eb600b272ecefac7e0ad3ffd6;hp=559e817eb6d1fe4e90fca49bd03f9ce642023353;hb=31ff797787d89bc01a69ca672fb2340ff21a827e;hpb=41c34d188a598b016d62e152735f8466fe9910a4 diff --git a/include/sys/time.h b/include/sys/time.h index 559e817e..3ce824e6 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -30,15 +30,15 @@ int utimes (const char *, const struct timeval [2]); #endif #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) -int futimes(int, const struct timeval [2]); -int futimesat(int, const char *, const struct timeval [2]); -int lutimes(const char *, const struct timeval [2]); -int settimeofday (const struct timeval *, void *); -int adjtime (const struct timeval *, struct timeval *); struct timezone { int tz_minuteswest; int tz_dsttime; }; +int futimes(int, const struct timeval [2]); +int futimesat(int, const char *, const struct timeval [2]); +int lutimes(const char *, const struct timeval [2]); +int settimeofday(const struct timeval *, const struct timezone *); +int adjtime (const struct timeval *, struct timeval *); #define timerisset(t) ((t)->tv_sec || (t)->tv_usec) #define timerclear(t) ((t)->tv_sec = (t)->tv_usec = 0) #define timercmp(s,t,op) ((s)->tv_sec == (t)->tv_sec ? \