diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/fcntl.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/fcntl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/fcntl.c b/sysdeps/unix/sysv/linux/i386/fcntl.c index 962249a855..e67931ec71 100644 --- a/sysdeps/unix/sysv/linux/i386/fcntl.c +++ b/sysdeps/unix/sysv/linux/i386/fcntl.c @@ -24,6 +24,10 @@ #include <sys/syscall.h> #include "../kernel-features.h" +extern int __syscall_fcntl (int __fd, int __cmd, ...); +#ifdef __NR_fcntl64 +extern int __syscall_fcntl64 (int __fd, int __cmd, ...); +#endif #if __ASSUME_FCNTL64 == 0 /* This variable is shared with all files that check for fcntl64. */ |