This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: BUG: stdin not a constant


>The following code doesn't compile. 

>------
>#include <stdio.h>

>static FILE *out = stdout;

>void main(void)
>{
>    /* out = stdout; */
>    fprintf(out, "hello world\n");
>}
>------

>It gets the following error message:
>test.c:3: initializer element is not constant

>The fix is to remove the initialiser and add the line which is commented
>out.

>However the code I am trying to port has these sort of variables spread
>all over the place, and I would like to know if there is someway I can
>get the compiler to treat it as a constant.

stdout is probably defined as "(&__iob[1])" which is just an expression
because of the parentheses. #undef it a #define it as "&__iob[1]" which
is a constant.


raf

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]