C - forward declaration of enums?
Forward declaration of enums in C does not work for me. I searched the internet and stackoverflow but all of the questions regarding forward declarations of enumerators refer to c++. What do you do for declaring enumerators in C? Put them at the top of each file (or in an include) so that all functions in the file can access them? Thanks Put them in a header so that all files that need them can access the header and use the declarations from it. When compiled with the options: $ /usr/bin/gcc -g -std=c99 -Wall -Wextra -c enum.c $ GCC 4.2.1 (on MacOS X 10.7.1) accepts the following code: enum