Patch from JonY to suppress redefinition warnings with mingw-w64 lfs64 warnings.

This commit is contained in:
Erik de Castro Lopo
2012-02-04 15:31:28 +11:00
parent a606e1a7ef
commit 6c7568b712
9 changed files with 36 additions and 0 deletions

View File

@@ -48,10 +48,14 @@
#include <sys/types.h> /* for off_t */
#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
#if _MSC_VER <= 1600 || defined __BORLANDC__ /* @@@ [2G limit] */
#ifndef fseeko
#define fseeko fseek
#endif
#ifndef ftello
#define ftello ftell
#endif
#endif
#endif
#include "FLAC/assert.h"
#include "FLAC/stream_decoder.h"
#include "share/alloc.h"