From: Ulrich Drepper Date: Sun, 19 Dec 1999 05:52:51 +0000 (+0000) Subject: Add __libc_open. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1887541e173b38dfe6cfe441397122576493c5fd;p=thirdparty%2Fglibc.git Add __libc_open. --- diff --git a/include/unistd.h b/include/unistd.h index 90105f1eb37..ae31b0b8593 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -5,6 +5,7 @@ extern int __access __P ((__const char *__name, int __type)); extern int __euidaccess __P ((__const char *__name, int __type)); extern int __libc_open64 (const char *file, int oflag, ...); +extern int __libc_open (const char *file, int oflag, ...); extern __off64_t __lseek64 __P ((int __fd, __off64_t __offset, int __whence)); extern __off64_t __libc_lseek64 (int __fd, __off64_t __offset, int __whence); extern ssize_t __pread __P ((int __fd, __ptr_t __buf, size_t __nbytes,