- small fix for snprintf() on Win32... MS renamed the function

to _snprintf !?
This commit is contained in:
2003-11-09 12:36:15 +00:00
parent a149109a5e
commit 20b353a72a

View File

@@ -105,6 +105,12 @@
#include "GHOST_C-api.h"
#include "winlay.h"
#ifdef WIN32
#ifndef snprintf
#define snprintf _snprintf
#endif
#endif
/****/
static void free_editverts(ListBase *edve);