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 | ab49ffe37f11b28144a7815ada1d891b14ffbc2d (patch) | |
tree | 5ee45fbf252f2a1467b06a37dddf09a8d14acfd7 /source/smbwrapper/realcalls.h | |
parent | 1918ea2991bef323fdb00912500961d60da17cdb (diff) | |
download | samba-ab49ffe37f11b28144a7815ada1d891b14ffbc2d.tar.gz samba-ab49ffe37f11b28144a7815ada1d891b14ffbc2d.tar.xz samba-ab49ffe37f11b28144a7815ada1d891b14ffbc2d.zip |
possibly use __sys_llseek()
Diffstat (limited to 'source/smbwrapper/realcalls.h')
-rw-r--r-- | source/smbwrapper/realcalls.h | 2 |
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 |