]> git.sesse.net Git - vlc/blobdiff - include/vlc_fs.h
Fix comment for VLC_CONFIG_LIST_CB
[vlc] / include / vlc_fs.h
index 01b0c3cf3aa1d07d1192c4077400a78ccb682725..c37fa9ade9ac56eb368bdd96b7c03e894d8fcd63 100644 (file)
@@ -65,6 +65,17 @@ static inline void vlc_rewinddir( DIR *dir )
 # define rewinddir vlc_rewinddir
 
 # include <sys/stat.h>
+# ifndef stat
+#  define stat _stati64
+# endif
+# ifndef fstat
+#  define fstat _fstati64
+# endif
+#define lseek _lseeki64
+#endif
+
+#ifdef __ANDROID__
+# define lseek lseek64
 #endif
 
 struct stat;