diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-19 19:51:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-19 19:51:55 +0000 |
commit | 762e5d483128d9dd06d22b52c5b8a918753673ca (patch) | |
tree | f0d4db78bda6e69331731cf0589134e04faef52b /include | |
parent | 2a505c961d490214d9801db06af253f234600a31 (diff) | |
download | glibc-762e5d483128d9dd06d22b52c5b8a918753673ca.tar glibc-762e5d483128d9dd06d22b52c5b8a918753673ca.tar.gz glibc-762e5d483128d9dd06d22b52c5b8a918753673ca.tar.bz2 glibc-762e5d483128d9dd06d22b52c5b8a918753673ca.zip |
Update.
1999-12-19 Andreas Jaeger <aj@suse.de>
* sysdeps/generic/libc-start.c: Remove declaration of
__libc_open. Move declaration of __libc_fcntl to ...
* include/fcntl.h: ...here.
* include/unistd.h: Move __libc_open and __libc_open64 to ...
* include/fcntl.h: ...here.
* malloc/malloc.h (__attribute_malloc__): Only define if hasn't
happened yet.
* malloc/Versions: __libc_freeres was exported with glibc 2.1.3,
rename label.
Diffstat (limited to 'include')
-rw-r--r-- | include/fcntl.h | 4 | ||||
-rw-r--r-- | include/unistd.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 8714d6aa14..fae0beb064 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -3,4 +3,8 @@ /* Now define the internal interfaces. */ extern int __open64 (__const char *__file, int __oflag, ...); +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, ...); + #endif diff --git a/include/unistd.h b/include/unistd.h index d8fc6cc651..24e035bb90 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -4,8 +4,6 @@ /* Now define the internal interfaces. */ extern int __access (__const char *__name, int __type); extern int __euidaccess (__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 (int __fd, __off64_t __offset, int __whence); extern __off64_t __libc_lseek64 (int __fd, __off64_t __offset, int __whence); extern ssize_t __pread (int __fd, void *__buf, size_t __nbytes, |