Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32037/zexy/src
Modified Files: fwriteln.c zexy.c Log Message: w32 does not know vsnprintf()! use _vsnprintf(), dude...
Index: fwriteln.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/fwriteln.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fwriteln.c 21 May 2007 12:03:39 -0000 1.2 --- fwriteln.c 5 Jul 2007 14:51:23 -0000 1.3 *************** *** 18,21 **** --- 18,25 ---- #include "zexy.h"
+ #ifdef __WIN32__ + # define snprintf _snprintf + #endif + #include <stdio.h> #include <string.h>
Index: zexy.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/zexy.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** zexy.c 14 Mar 2007 09:08:56 -0000 1.17 --- zexy.c 5 Jul 2007 14:51:23 -0000 1.18 *************** *** 24,27 **** --- 24,32 ---- #include <stdarg.h>
+ + #ifdef __WIN32__ + # define vsnprintf _vsnprintf + #endif + /* do a little help thing */