diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-07 08:11:12 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-07 08:11:12 +0000 |
commit | 7914f66ef07e186af5e9c3339caf5cabf7aadb6f (patch) | |
tree | d254ecc37e4938ee5a7cd9b2be642ca4a47858b6 | |
parent | 73b52ab419ade11b1f70684a88ee9d6a1c88ddbb (diff) | |
download | samba-7914f66ef07e186af5e9c3339caf5cabf7aadb6f.tar.gz samba-7914f66ef07e186af5e9c3339caf5cabf7aadb6f.tar.bz2 samba-7914f66ef07e186af5e9c3339caf5cabf7aadb6f.zip |
possibly use __sys_llseek()
(This used to be commit ab49ffe37f11b28144a7815ada1d891b14ffbc2d)
-rw-r--r-- | source3/smbwrapper/realcalls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbwrapper/realcalls.h b/source3/smbwrapper/realcalls.h index 76e233bc9b..20055a30ad 100644 --- a/source3/smbwrapper/realcalls.h +++ b/source3/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 |