After going back and forth on this one, it seems simpler to
use libcompat's snprintf, even if _snprintf is available.
There were issues on MSVC using _snprintf.
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@995
64e312b2-a51f-0410-8e61-
82d0ca0eb02a
#if HAVE_STDARG_H
#include <stdarg.h>
-#if !HAVE_SNPRINTF && HAVE__SNPRINTF
-#define snprintf _snprintf;
-#endif /* HAVE_SNPRINTF && HAVE__SNPRINTF */
-
#if !HAVE_VSNPRINTF
CK_DLL_EXP int rpl_vsnprintf(char *, size_t, const char *, va_list);
#endif