diff options
Diffstat (limited to 'include/fcntl.h')
-rw-r--r-- | include/fcntl.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index f14baf7ae5..897fd609bb 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -3,23 +3,15 @@ /* Now define the internal interfaces. */ extern int __open64 (__const char *__file, int __oflag, ...); +libc_hidden_proto (__open64) extern int __libc_open64 (const char *file, int oflag, ...); extern int __libc_open (const char *file, int oflag, ...); +libc_hidden_proto (__libc_open) extern int __libc_fcntl (int fd, int cmd, ...); +libc_hidden_proto (__libc_fcntl) extern int __open (__const char *__file, int __oflag, ...); -extern int __open_internal (__const char *__file, int __oflag, ...) - attribute_hidden; +libc_hidden_proto (__open) extern int __fcntl (int __fd, int __cmd, ...); -extern int __fcntl_internal (int __fd, int __cmd, ...) attribute_hidden; - -#ifndef NOT_IN_libc -# define __fcntl(fd, cmd, args...) INTUSE(__fcntl) (fd, cmd, ##args) -# define __open(file, oflag, args...) INTUSE(__open) (file, oflag, ##args) -# ifdef SHARED -# define __libc_fcntl(fd, cmd, args...) __fcntl_internal (fd, cmd, ##args) -# define __libc_open(file, oflag, args...) \ - __open_internal (file, oflag, ##args) -# endif -#endif +libc_hidden_proto (__fcntl) #endif |