[git commit] llseek.c: use off64_t instead of loff_t as in header

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Fri Jun 15 12:00:37 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=67b8585deac9a0a6c8f8d5c64d377ab0f1acb3a3
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 libc/sysdeps/linux/common/llseek.c |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/libc/sysdeps/linux/common/llseek.c b/libc/sysdeps/linux/common/llseek.c
index 8b7cb75..333770a 100644
--- a/libc/sysdeps/linux/common/llseek.c
+++ b/libc/sysdeps/linux/common/llseek.c
@@ -8,8 +8,9 @@
  */
 
 #include <_lfs_64.h>
-#include <unistd.h>
 #include <sys/syscall.h>
+#include <unistd.h>
+#include <stdint.h>
 
 /* Newer kernel ports have llseek() instead of _llseek() */
 #if !defined __NR__llseek && defined __NR_llseek
@@ -17,16 +18,16 @@
 #endif
 
 #ifdef __NR__llseek
-loff_t lseek64(int fd, loff_t offset, int whence)
+off64_t lseek64(int fd, off64_t offset, int whence)
 {
-	loff_t result;
-	return (loff_t)INLINE_SYSCALL(_llseek, 5, fd, (off_t) (offset >> 32),
+	off64_t result;
+	return (off64_t)INLINE_SYSCALL(_llseek, 5, fd, (off_t) (offset >> 32),
 				(off_t) (offset & 0xffffffff), &result, whence) ?: result;
 }
 #else
-loff_t lseek64(int fd, loff_t offset, int whence)
+off64_t lseek64(int fd, off64_t offset, int whence)
 {
-	return (loff_t)lseek(fd, (off_t) (offset), whence);
+	return (off64_t)lseek(fd, (off_t) (offset), whence);
 }
 #endif
 #ifndef __LINUXTHREADS_OLD__


More information about the uClibc-cvs mailing list