aboutsummaryrefslogtreecommitdiffstats
path: root/syscall.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-02-14 00:58:10 +0000
committerWayne Davison <wayned@samba.org>2005-02-14 00:58:10 +0000
commit0dd046d36f41bbabba9261152c9891bc78fcabac (patch)
treedcf3482fefce92a8303f9d9f7a23f384e0439d1e /syscall.c
parent4f5b0756df0dfc925b9576db47ecce949c378e18 (diff)
downloadandroid_external_rsync-0dd046d36f41bbabba9261152c9891bc78fcabac.tar.gz
android_external_rsync-0dd046d36f41bbabba9261152c9891bc78fcabac.tar.bz2
android_external_rsync-0dd046d36f41bbabba9261152c9891bc78fcabac.zip
Don't check defined-ness of SIZEOF_OFF64_T.
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 2607774b..5cdf052a 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)
{
-#ifdef SIZEOF_OFF64_T
+#if SIZEOF_OFF64_T
off64_t lseek64();
return lseek64(fd, offset, whence);
#else