Alternative for _lseeki64(...) ??
My Windows code uses _lseeki64( int handle, __int64 offset, int origin ) and that fails with 'undefined references' error when porting to Linux. I use the following header:
#ifdef WIN32
#include <io.h>
#else
#include <unistd.h>
#endif
Is there an equivalent alternative under Linux?
Thanks
SimpleTechie.

