Skip to content
Snippets Groups Projects
Commit ef122ff5 authored by rogerdpack's avatar rogerdpack Committed by Michael Niedermayer
Browse files

eliminate some mingw warnings

parent 52fa5cea
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,13 @@ ...@@ -37,7 +37,13 @@
# undef lseek # undef lseek
# endif # endif
# define lseek(f,p,w) _lseeki64((f), (p), (w)) # define lseek(f,p,w) _lseeki64((f), (p), (w))
# ifdef stat
# undef stat
# endif
# define stat _stati64 # define stat _stati64
# ifdef fstat
# undef fstat
# endif
# define fstat(f,s) _fstati64((f), (s)) # define fstat(f,s) _fstati64((f), (s))
#endif /* defined(__MINGW32__) && !defined(__MINGW32CE__) */ #endif /* defined(__MINGW32__) && !defined(__MINGW32CE__) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment