From: Ulrich Drepper Date: Sat, 8 Jan 2000 05:13:37 +0000 (+0000) Subject: Declare __libc_fcntl. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=820aa71c428c2a1f4c08767d15f87002ab4a8fc2;p=thirdparty%2Fglibc.git Declare __libc_fcntl. Move __libc_open and __libc_open64 to here. --- diff --git a/include/fcntl.h b/include/fcntl.h index 949c6621fd9..d20afd92303 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -3,4 +3,7 @@ /* Now define the internal interfaces. */ 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