test: remove replacement snprintf for mingw

Mingw has a proper definition of snprintf.
This commit is contained in:
Sean Farrell 2013-10-11 19:23:55 +02:00 committed by Ben Noordhuis
parent 4c6294e69b
commit ee434b3069

View File

@ -153,7 +153,7 @@ enum test_status {
return TEST_SKIP; \
} while (0)
#ifdef _WIN32
#if defined _WIN32 && ! defined __GNUC__
#include <stdarg.h>