diff options
Diffstat (limited to 'include/sys/time.h')
-rw-r--r-- | include/sys/time.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/time.h b/include/sys/time.h index 73eeb2a2f..46b9b5667 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -79,6 +79,7 @@ libc_hidden_proto(gettimeofday) extern int settimeofday (__const struct timeval *__tv, __const struct timezone *__tz) __THROW __nonnull ((1)); +libc_hidden_proto(settimeofday) /* Adjust the current time of day by the amount in DELTA. If OLDDELTA is not NULL, it is filled in with the amount @@ -133,12 +134,14 @@ extern int getitimer (__itimer_which_t __which, extern int setitimer (__itimer_which_t __which, __const struct itimerval *__restrict __new, struct itimerval *__restrict __old) __THROW; +libc_hidden_proto(setitimer) /* Change the access time of FILE to TVP[0] and the modification time of FILE to TVP[1]. If TVP is a null pointer, use the current time instead. Returns 0 on success, -1 on errors. */ extern int utimes (__const char *__file, __const struct timeval __tvp[2]) __THROW __nonnull ((1)); +libc_hidden_proto(utimes) #if 0 /*def __USE_BSD*/ /* Same as `utimes', but does not follow symbolic links. */ |