Hey up, I just tried to compile the latest code from git with Visual Studio Express 2010 and there are a whole bunch of syntax errors happening in get.h and get.c.
It does compile using MinGW but I can't debug it when it crashes.
Edit: there's also a syntax error in init.c as it doesn't like starting the member names with a dot:
static struct init_module arrays_module = {
.name = "arrays",
.init = init_arrays,
.cleanup = cleanup_arrays
};
|