diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 00:58:03 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 00:58:03 +0000 |
commit | af0172162f7c653cad6a11ed1c1a5459bc154465 (patch) | |
tree | 70031dad1e7286d58762da7b9e3d3f93d043c278 /libc/unistd/pathconf.c | |
parent | c8609543a9a8bf6559c2931dbbef6b3c41b3fbf2 (diff) |
hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing headers, other jump relocs removed
Diffstat (limited to 'libc/unistd/pathconf.c')
-rw-r--r-- | libc/unistd/pathconf.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libc/unistd/pathconf.c b/libc/unistd/pathconf.c index 579b99be0..f41cf69ba 100644 --- a/libc/unistd/pathconf.c +++ b/libc/unistd/pathconf.c @@ -36,6 +36,8 @@ //#include "linux_fsinfo.h" +libc_hidden_proto(statfs) +libc_hidden_proto(stat) /* The Linux kernel headers mention this as a kind of generic value. */ #define LINUX_LINK_MAX 127 @@ -57,7 +59,7 @@ long int pathconf(const char *path, int name) struct statfs fsbuf; /* Determine the filesystem type. */ - if (__statfs (path, &fsbuf) < 0) + if (statfs (path, &fsbuf) < 0) { if (errno == ENOSYS) /* not possible, return the default value. */ @@ -131,7 +133,7 @@ long int pathconf(const char *path, int name) struct statfs buf; int save_errno = errno; - if (__statfs (path, &buf) < 0) + if (statfs (path, &buf) < 0) { if (errno == ENOSYS) { @@ -205,7 +207,7 @@ long int pathconf(const char *path, int name) /* AIO is only allowed on regular files and block devices. */ struct stat st; - if (__stat (path, &st) < 0 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode))) + if (stat (path, &st) < 0 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode))) return -1; else return 1; |