Windows has vsnprintf at least since 2003

This commit is contained in:
2018-11-16 10:59:32 +01:00
parent 483530f053
commit fa51c376c1

View File

@ -24,7 +24,7 @@
#include <stdarg.h>
#include <stdlib.h>
#if defined(__vxworks) || defined(vxWorks) || defined(_WIN32) || defined(__rtems__)
#if defined(__vxworks) || defined(vxWorks) || defined(__rtems__)
// These systems have no vsnprintf
#define vsnprintf(p,l,f,v) vsprintf(p,f,v)
#endif