Go to the documentation of this file. 1 #ifndef __NAVIT_LFS_H__
22 #error "Don't #include stdio.h directly if you later #include navit_lfs.h"
25 #error "Don't #include unistd.h directly if you later #include navit_lfs.h"
28 #error "Don't #include unistd.h directly if you later #include navit_lfs.h"
31 #define _LARGEFILE_SOURCE
32 #define _FILE_OFFSET_BITS 64
34 #define __USE_MINGW_FSEEK
44 #define lseek(fd,offset,whence) _lseeki64(fd,offset,whence)
47 #define ftello(f) ftello64(f)
50 #define fseeko(f,offset,whence) fseeko64(f,offset,whence)
53 #define off_t long long
57 #ifdef HAVE_API_ANDROID
70 #define __NAVIT_LFS_H__