diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-27 15:37:19 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-27 15:37:19 +0000 |
commit | ddbbc1dfe53a6d7de69d648a5073c8f812832b11 (patch) | |
tree | c3d14245f101720851b43be1d13b41836510b213 /libc/sysdeps/linux/sh | |
parent | 6167a20f664e6bf46ca4fce4b2b608dd1249000f (diff) |
Add some prototypes to arch specific pread_write.c, mips has __mips64 questionable ifdefs
Diffstat (limited to 'libc/sysdeps/linux/sh')
-rw-r--r-- | libc/sysdeps/linux/sh/pread_write.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sh/pread_write.c b/libc/sysdeps/linux/sh/pread_write.c index 0cfac24f3..dc756d647 100644 --- a/libc/sysdeps/linux/sh/pread_write.c +++ b/libc/sysdeps/linux/sh/pread_write.c @@ -24,6 +24,7 @@ #endif #ifdef __NR_pread +extern __typeof(pread) __libc_pread; # define __NR___syscall_pread __NR_pread static inline _syscall6(ssize_t, __syscall_pread, int, fd, void *, buf, size_t, count, int, dummy, off_t, offset_hi, off_t, offset_lo); @@ -35,6 +36,7 @@ ssize_t __libc_pread(int fd, void *buf, size_t count, off_t offset) weak_alias(__libc_pread,pread) # ifdef __UCLIBC_HAS_LFS__ +extern __typeof(pread64) __libc_pread64; ssize_t __libc_pread64(int fd, void *buf, size_t count, off64_t offset) { uint32_t low = offset & 0xffffffff; @@ -55,6 +57,7 @@ weak_alias(__libc_pread64,pread64) #endif #ifdef __NR_pwrite +extern __typeof(pwrite) __libc_pwrite; # define __NR___syscall_pwrite __NR_pwrite static inline _syscall6(ssize_t, __syscall_pwrite, int, fd, const void *, buf, size_t, count, int, dummy, off_t, offset_hi, off_t, offset_lo); @@ -66,6 +69,7 @@ ssize_t __libc_pwrite(int fd, const void *buf, size_t count, off_t offset) weak_alias(__libc_pwrite,pwrite) # ifdef __UCLIBC_HAS_LFS__ +extern __typeof(pwrite64) __libc_pwrite64; ssize_t __libc_pwrite64(int fd, const void *buf, size_t count, off64_t offset) { uint32_t low = offset & 0xffffffff; |