diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-07-11 13:50:59 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-07-11 13:50:59 +0000 |
commit | 7c9dcd4bba43f5ff489227abdb65790738a18af1 (patch) | |
tree | 7f15f108a425c4b7845593e5bdb0f8afa8888329 /libavutil/internal.h | |
parent | 36564c514c79a17233e6285cd5ace43c3730b0d1 (diff) | |
download | ffmpeg-7c9dcd4bba43f5ff489227abdb65790738a18af1.tar.gz |
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
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r-- | libavutil/internal.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 842c260028..d6a6a9107c 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -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) |