aboutsummaryrefslogtreecommitdiffstats
path: root/syscall.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-04-06 02:08:21 +0000
committerWayne Davison <wayned@samba.org>2005-04-06 02:08:21 +0000
commitebd33e0cea4d1f54702167ce014823c72f2054bc (patch)
tree43ad3b1b9a26b06f8fc93c2d03a52e215f2af53e /syscall.c
parent5f2c5bf110870f22f1c42fa86e663523359b2947 (diff)
downloadandroid_external_rsync-ebd33e0cea4d1f54702167ce014823c72f2054bc.tar.gz
android_external_rsync-ebd33e0cea4d1f54702167ce014823c72f2054bc.tar.bz2
android_external_rsync-ebd33e0cea4d1f54702167ce014823c72f2054bc.zip
Use the new HAVE_LSEEK64 define.
Diffstat (limited to 'syscall.c')
-rw-r--r--syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/syscall.c b/syscall.c
index 5cdf052a..2f73ba3b 100644
--- a/syscall.c
+++ b/syscall.c
@@ -243,7 +243,7 @@ int do_fstat(int fd, STRUCT_STAT *st)
OFF_T do_lseek(int fd, OFF_T offset, int whence)
{
-#if SIZEOF_OFF64_T
+#ifdef HAVE_LSEEK64
off64_t lseek64();
return lseek64(fd, offset, whence);
#else