summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-07 08:11:12 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-07 08:11:12 +0000
commitab49ffe37f11b28144a7815ada1d891b14ffbc2d (patch)
tree5ee45fbf252f2a1467b06a37dddf09a8d14acfd7 /source/smbwrapper
parent1918ea2991bef323fdb00912500961d60da17cdb (diff)
downloadsamba-ab49ffe37f11b28144a7815ada1d891b14ffbc2d.tar.gz
samba-ab49ffe37f11b28144a7815ada1d891b14ffbc2d.tar.xz
samba-ab49ffe37f11b28144a7815ada1d891b14ffbc2d.zip
possibly use __sys_llseek()
Diffstat (limited to 'source/smbwrapper')
-rw-r--r--source/smbwrapper/realcalls.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/smbwrapper/realcalls.h b/source/smbwrapper/realcalls.h
index 76e233bc9bd..20055a30ad1 100644
--- a/source/smbwrapper/realcalls.h
+++ b/source/smbwrapper/realcalls.h
@@ -201,6 +201,8 @@
#define real_llseek(fd,ofs,whence) (_llseek(fd,ofs,whence))
#elif HAVE___LLSEEK
#define real_llseek(fd,ofs,whence) (__llseek(fd,ofs,whence))
+#elif HAVE___SYS_LLSEEK
+#define real_llseek(fd,ofs,whence) (__sys_llseek(fd,ofs,whence))
#endif