Is "unix" restricted keyword in C?

Viewed 4122

This code does not compile for me on GCC version 4.3.2 (Debian 4.3.2-1.1)

main() {
  int unix;
}

I've checked the C keywords list and "unix" is not one of them.

Why am I getting the following error?

unix.c:2: error: expected identifier or ‘(’ before numeric constant
6 Answers
Related