diff options
Diffstat (limited to 'include/fcntl.h')
-rw-r--r-- | include/fcntl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 748854a023..7ac5febbf2 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -7,6 +7,11 @@ extern int __libc_open64 (const char *file, int oflag, ...); extern int __libc_open (const char *file, int oflag, ...); extern int __libc_fcntl (int fd, int cmd, ...); extern int __open (__const char *__file, int __oflag, ...); -extern int __fcntl (int __fd, int __cmd, ...) __THROW; +extern int __fcntl (int __fd, int __cmd, ...); +extern int __fcntl_internal (int __fd, int __cmd, ...); + +#ifndef NOT_IN_libc +# define __fcntl(fd, cmd, args...) INTUSE(__fcntl) (fd, cmd, ##args) +#endif #endif |