
#Reent.h no such file code#
Here is the code for XMLUtil.cpp, the source code in question above, though I should add that these errors are repeated exactly for the 4 other. Note: C++ does not support default-intĬ:\cygwin\usr\include\stdlib.h(62) : warning C4392: 'int abs(void)' : incorrect number of arguments for intrinsic function, expected '1' argumentsĬ:\cygwin\usr\include\stdlib.h(63) : error C2733: second C linkage of overloaded function 'atexit' not allowedĬ:\cygwin\usr\include\stdlib.h(63) : see declaration of 'atexit'Ĭ:\cygwin\usr\include\stdlib.h(85) : warning C4392: 'long labs(void)' : incorrect number of arguments for intrinsic function, expected '1' argumentsĬ:\Program Files\Microsoft Visual Studio 8\VC\include\cstdio(25) : error C2039: 'fpos_t' : is not a member of '`global namespace''Ĭ:\Program Files\Microsoft Visual Studio 8\VC\include\cstdio(25) : error C2873: 'fpos_t' : symbol cannot be used in a using-declarationĬ:\Program Files\Microsoft Visual Studio 8\VC\include\cstdio(25) : error C2039: 'FILE' : is not a member of '`global namespace''Ĭ:\Program Files\Microsoft Visual Studio 8\VC\include\cstdio(25) : error C2873: 'FILE' : symbol cannot be used in a using-declarationĬ:\Program Files\Microsoft Visual Studio 8\VC\include\cstdio(26) : error C2039: 'clearerr' : is not a member of '`global namespace''Ĭ:\Program Files\Microsoft Visual Studio 8\VC\include\cstdio(26) : error C2873: 'clearerr' : symbol cannot be used in a using-declarationĮtc etc etc for 100 errors before stopping and moving on to compile the next. Note: C++ does not support default-intĬ:\cygwin\usr\include\sys/_types.h(34) : error C4980: '_value' : use of this keyword requires /clr:oldSyntax command line optionĬ:\cygwin\usr\include\sys/_types.h(34) : error C2059: syntax error : '_value'Ĭ:\cygwin\usr\include\sys/reent.h(607) : error C2144: syntax error : 'unsigned _int64' should be preceded by ' 'Ĭ:\cygwin\usr\include\sys/reent.h(607) : error C4430: missing type specifier - int assumed. Build started: Project: tarse, Configuration: Release Win32 -Ĭ:\cygwin\usr\include\sys/_types.h(15) : error C2144: syntax error : '_int64' should be preceded by ' 'Ĭ:\cygwin\usr\include\sys/_types.h(15) : error C4430: missing type specifier - int assumed. The errors appear identical for both files as far as I can tell (I get "fatal error C1003: error count exceeds 100 stopping compilation" after only 12 cstring-related errors so I can't tell if there are other files involved). This is a snippet of the build output - the errors shown, all repetitive, apply to the files cstdio and cstring in C:\Program Files\Microsoft Visual Studio 8\VC\include. I'm just not familiar enough with C++ yet to make head or tail of what I feel like is a pretty simple error. I've been at it for a while, slowly figuring things out, but now I'm stumped.

I'm trying to compile, using VC++ 2005 Express on Windows, the code for a model written in C++, originally for Unix.

I've been struggling with it well over a week! If anyone can help me out I'd really (REALLY) appreciate it.

I'm really new to all this, but I feel like this should be an easily solveable issue.
