32#ifndef __portable_fileio_h__
33#define __portable_fileio_h__
41#if defined(HAVE_FSEEKO)
42 return fseeko(fp, offset, whence);
43#elif defined(HAVE_FSEEK64)
44 return fseek64(fp, offset, whence);
45#elif defined(__BEOS__)
46 return _fseek(fp, offset, whence);
48 return fseek(fp, offset, whence);
54#if defined(HAVE_FTELLO)
56#elif defined(HAVE_FTELL64)
off_t portable_ftell(FILE *fp)
int portable_fseek(FILE *fp, off_t offset, int whence)