summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libpthread/linuxthreads.old/wrapsyscall.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libpthread/linuxthreads.old/wrapsyscall.c b/libpthread/linuxthreads.old/wrapsyscall.c
index e419e54f0..790cc200a 100644
--- a/libpthread/linuxthreads.old/wrapsyscall.c
+++ b/libpthread/linuxthreads.old/wrapsyscall.c
@@ -81,6 +81,12 @@ CANCELABLE_SYSCALL (int, close, (int fd), (fd))
CANCELABLE_SYSCALL_VA (int, fcntl, (int fd, int cmd, ...),
(fd, cmd, va_arg (ap, long int)), cmd)
+#ifdef __UCLIBC_HAS_LFS__
+/* fcntl64(2). */
+CANCELABLE_SYSCALL_VA (int, fcntl64, (int fd, int cmd, ...),
+ (fd, cmd, va_arg (ap, long int)), cmd)
+#endif
+
/* fsync(2). */
CANCELABLE_SYSCALL (int, fsync, (int fd), (fd))