vlc_common: remove redirections to mingw printf functions

This is the job of mingw-w64 to pick the proper variant when we set
__USE_MINGW_ANSI_STDIO. In fact when including stdio.h it undefines our defines.
This commit is contained in:
Steve Lhomme 2023-01-25 15:02:27 +01:00
parent c74f0a8e07
commit b2a7a5b374
1 changed files with 0 additions and 6 deletions

View File

@ -72,12 +72,6 @@
# define VLC_GCC_VERSION(maj,min) (0)
#endif
/* Try to fix format strings for all versions of mingw and mingw64 */
#if defined( _WIN32 ) && defined( __USE_MINGW_ANSI_STDIO )
#define snprintf __mingw_snprintf
#define vsnprintf __mingw_vsnprintf
#endif
/* Function attributes for compiler warnings */
#if defined __has_attribute
# if __has_attribute(warning)