diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-07-09 19:25:23 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-07-09 19:25:23 -0700 |
commit | 440566c3f427ae2096f57a7651de5767003a02c2 (patch) | |
tree | 9533a13fe5d7c01c0974c9ae84e67667fbad622c /sysdeps/unix | |
parent | 5be9d05d3136460cf6cedd3823fd236aeebe83ef (diff) | |
download | glibc-440566c3f427ae2096f57a7651de5767003a02c2.tar.gz glibc-440566c3f427ae2096f57a7651de5767003a02c2.tar.xz glibc-440566c3f427ae2096f57a7651de5767003a02c2.zip |
Avoid namespace pollution.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/fpathconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/fpathconf.c b/sysdeps/unix/sysv/linux/fpathconf.c index 67dc3845f2..617a5a93cf 100644 --- a/sysdeps/unix/sysv/linux/fpathconf.c +++ b/sysdeps/unix/sysv/linux/fpathconf.c @@ -52,7 +52,7 @@ __fpathconf (fd, name) return __statfs_chown_restricted (__fstatfs (fd, &fsbuf), &fsbuf); case _PC_PIPE_BUF: - r = fcntl (fd, F_GETPIPE_SZ); + r = __fcntl (fd, F_GETPIPE_SZ); if (r > 0) return r; /* FALLTHROUGH */ |