Remove unnecessary MINGW ifdef.

These were added for MSVC++, which is no longer supported.

Originally committed as revision 9595 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2007-07-11 13:50:59 +00:00
parent 36564c514c
commit 7c9dcd4bba

View File

@ -93,16 +93,6 @@
# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
#endif
#ifdef __MINGW32__
# ifdef _DEBUG
# define DEBUG
# endif
# define snprintf _snprintf
# define vsnprintf _vsnprintf
#endif /* !__MINGW32__ */
#ifdef USE_FASTMEMCPY
# include "libvo/fastmemcpy.h"
# define memcpy(a,b,c) fast_memcpy(a,b,c)