Subject: | microsoft compiler fixes |
The microsoft compiler version 6 needs
#define snprintf _snprintf
added to SpiderMonkey.xs (somewhere at beginnig of file)
and
int size = 400;
char msg[size];
needs to be
int size = 400;
char msg[400];
cheers