diff options
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index 78f0b9c4d2..642f1d29ce 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -4,11 +4,21 @@ /* 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 __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, __off_t __offset); +extern ssize_t __libc_pread (int __fd, void *__buf, size_t __nbytes, + __off_t __offset); +extern ssize_t __libc_pread64 (int __fd, void *__buf, size_t __nbytes, + __off64_t __offset); extern ssize_t __pwrite (int __fd, __const void *__buf, size_t __n, __off_t __offset); +extern ssize_t __libc_pwrite (int __fd, __const void *__buf, size_t __n, + __off_t __offset); +extern ssize_t __libc_pwrite64 (int __fd, __const void *__buf, size_t __n, + __off64_t __offset); extern int __pipe (int __pipedes[2]); extern unsigned int __sleep (unsigned int __seconds); extern int __chown (__const char *__file, |