diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
commit | cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 (patch) | |
tree | f5f56f2ef0f3048325419857d0b538135524ff8c /include/sys/time.h | |
parent | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (diff) |
Last portion of libc_hidden_proto removal.
Appears to build fine (several .configs tried)
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. */ |