summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/fpathconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/fpathconf.c')
-rw-r--r--sysdeps/unix/sysv/linux/fpathconf.c2
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 */