On the Linux platform, I get compile errors for using a function named CURSES. If I change the name to something else such as "my_curses" there are no more errors.
I understand there is a curses.h but I'm not aware of any functions named CURSES. Is there a function that already exists called CURSES in the standard or built in libraries?
PROTOTYPE:
void CURSES(int x)
ERROR: "error: syntax error before numeric constant"
Then in the function declaration I get a bunch of similar errors along with a bunch of errors with "conflicting types".
CURSES. Could you please give your#includes? – fnl Feb 11 '12 at 19:30cursesorCURSES? You might be in conflict with a macro name. – Magnus Hoff Feb 11 '12 at 19:31#define CURSES(x) ((x)+42). that would give a 'redefinition' error. Or#ifdef CURSES #error CURSES!@#$#@ #endifBTW: is it so hard to give your function a different name? – wildplasser Feb 11 '12 at 19:34#includedeclarations at the top. If I just compile a simple test program that only includesstdio.h, for example, I do not get this error. – Brian Campbell Feb 11 '12 at 19:39