diff options
Diffstat (limited to 'include/sys/stat.h')
-rw-r--r-- | include/sys/stat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index 20d0f4bad..b2c87ddd5 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -228,6 +228,8 @@ extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64) extern int stat64 (__const char *__restrict __file, struct stat64 *__restrict __buf) __THROW __nonnull ((1, 2)); extern int fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2)); +libc_hidden_proto(stat64) +libc_hidden_proto(fstat64) #endif #ifdef __USE_ATFILE @@ -275,6 +277,7 @@ extern int __REDIRECT_NTH (lstat, extern int lstat64 (__const char *__restrict __file, struct stat64 *__restrict __buf) __THROW __nonnull ((1, 2)); +libc_hidden_proto(lstat64) # endif #endif @@ -282,6 +285,7 @@ extern int lstat64 (__const char *__restrict __file, If FILE is a symbolic link, this affects its target instead. */ extern int chmod (__const char *__file, __mode_t __mode) __THROW __nonnull ((1)); +libc_hidden_proto(chmod) #if 0 /*def __USE_BSD*/ /* Set file access permissions for FILE to MODE. @@ -318,6 +322,7 @@ extern __mode_t getumask (void) __THROW; /* Create a new directory named PATH, with permission bits MODE. */ extern int mkdir (__const char *__path, __mode_t __mode) __THROW __nonnull ((1)); +libc_hidden_proto(mkdir) #ifdef __USE_ATFILE /* Like mkdir, create a new directory with permission bits MODE. But @@ -333,6 +338,7 @@ extern int mkdirat (int __fd, __const char *__path, __mode_t __mode) #if defined __USE_MISC || defined __USE_BSD || defined __USE_XOPEN_EXTENDED extern int mknod (__const char *__path, __mode_t __mode, __dev_t __dev) __THROW __nonnull ((1)); +libc_hidden_proto(mknod) #endif #ifdef __USE_ATFILE |