diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:07:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:07:43 +0000 |
commit | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (patch) | |
tree | 3434fe3fee6b02c3c7006c91366ac7708810a656 /include/sys/stat.h | |
parent | 2cced20a74b0fd22fd34254e5d92ce06e2cfb60d (diff) |
next portion of libc_hidden_proto removal
Diffstat (limited to 'include/sys/stat.h')
-rw-r--r-- | include/sys/stat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index 508239050..20d0f4bad 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -206,10 +206,12 @@ __BEGIN_DECLS /* Get file attributes for FILE and put them in BUF. */ extern int stat (__const char *__restrict __file, struct stat *__restrict __buf) __THROW __nonnull ((1, 2)); +libc_hidden_proto(stat) /* Get file attributes for the file, device, pipe, or socket that file descriptor FD is open on and put them in BUF. */ extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)); +libc_hidden_proto(fstat) #else # ifdef __REDIRECT_NTH extern int __REDIRECT_NTH (stat, (__const char *__restrict __file, @@ -258,6 +260,7 @@ extern int fstatat64 (int __fd, __const char *__restrict __file, If FILE is a symbolic link, do not follow it. */ extern int lstat (__const char *__restrict __file, struct stat *__restrict __buf) __THROW __nonnull ((1, 2)); +libc_hidden_proto(lstat) # else # ifdef __REDIRECT_NTH extern int __REDIRECT_NTH (lstat, |