Declare __libc_fcntl.

Move __libc_open and __libc_open64 to here.
This commit is contained in:
Ulrich Drepper 2000-01-08 05:13:37 +00:00
parent 6154bf4170
commit 820aa71c42

View File

@ -3,4 +3,7 @@
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __open64 __P ((__const char *__file, int __oflag, ...)); extern int __open64 __P ((__const char *__file, int __oflag, ...));
extern int __libc_open64 __P ((const char *file, int oflag, ...));
extern int __libc_open __P ((const char *file, int oflag, ...));
extern int __libc_fcntl __P ((int fd, int cmd, ...));
#endif #endif