I'm receiving an error trying to build a program due to file mingw/include/math.h
The error states include/math.h:379:20: error: expected identifier or '(' before numeric constant
The error is from the following lines
extern int __cdecl __isnan (double);
extern int __cdecl __isnanf (float);
extern int __cdecl __isnanl (long double);
I'm wondering if I am able to modify these lines to work with my compiler or not, such as making them do the same thing in a compatible way, or what I need to do to fix these errors.
Just as importantly, I am also curious what these lines do.
If it is of any help, I am trying to do mingw32-make install
freealut after configuring using cmake.
Thanks