Warning: Speculation follows.
The code it's complaining about, line 104, column 31 in file _default_types.h, is:
#elif defined(LLONG_MAX) && (LLONG_MAX > 0x7fffffff)
^ column 31
LLONG_MAX is defined in <limits.h>. On Cygwin, the definition is:
#define LLONG_MAX __LONG_LONG_MAX__
which refers to this:
#ifndef __LONG_LONG_MAX__
#define __LONG_LONG_MAX__ 9223372036854775807LL
#endif
The type long long and the LL suffix for long long integer constants are a new feature in C99. In C prior to C99 (unless it's supported as an extension), 9223372036854775807LL would be a syntax error. I can imagine that a parser might interpret it as the syntactically valid constant 9223372036854775807L followed by L. (That wouldn't actually be a correct interpretation, but it's a syntax error anyway.)
I haven't used Ora*C, but my guess is that it has to parse its input code, which is a combination of C and SQL, producing pure C output. (Is that correct?) If the Ora*C parser doesn't understand the type long long, or a ...LL literal, it could produce the kind of error you're seeing.
Something that really raises my suspicions is this line in your pcscfg.cfg file:
code=kr_c
That probably tells Ora*C to treat its input as K&R style (i.e., pre-standard) C code. Consult your documentation and see if there's an option to tell it to process C99 code, or at least something more modern than K&R C.
This web page suggests that code=ansi_c is a recognized option. Try that.
Or is the error coming from the C compiler that's invoked by Ora*C? What C compiler are you using? If it's not gcc, can you configure it to use gcc?
#elif (defined(LLONG_MAX) && (LLONG_MAX > 0x7fffffff) )You could also try to remove the parenthesis aroundLLONG_MAX > 0x7fffffff. Also: inspect the previous line. Could be a \r\n + backslash thing. – wildplasser Dec 12 '11 at 17:12