Skip to content
Snippets Groups Projects
Commit f3c70cc6 authored by Miller Puckette's avatar Miller Puckette
Browse files

small MSW bugfix

parent d527ff2f
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#ifdef _MSC_VER /* This is only for Microsoft's compiler, not cygwin, e.g. */
#define snprintf sprintf_s
#endif
static t_symbol *class_loadsym; /* name under which an extern is invoked */ static t_symbol *class_loadsym; /* name under which an extern is invoked */
static void pd_defaultfloat(t_pd *x, t_float f); static void pd_defaultfloat(t_pd *x, t_float f);
static void pd_defaultlist(t_pd *x, t_symbol *s, int argc, t_atom *argv); static void pd_defaultlist(t_pd *x, t_symbol *s, int argc, t_atom *argv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment