search for: l_struct_2e___jmp_buf_tag

Displaying 1 result from an estimated 1 matches for "l_struct_2e___jmp_buf_tag".

2006 Aug 25
1
[LLVMdev] llvm-test and _setjmp
...compiling siod (and others): gcc Output/siod.cbe.c -lm -ldl -fno-strict-aliasing -O2 -o Output/siod.cbe Output/siod.cbe.c:471: error: conflicting types for '_setjmp' /usr/include/setjmp.h:63: error: previous declaration of '_setjmp' was here siod.cbe.c:471: int _setjmp(struct l_struct_2E___jmp_buf_tag *); /usr/include/setjmp.h:64: extern int _setjmp (struct __jmp_buf_tag __env[1]) __THROW; I assume this is because of the array vs. the pointer. Why does the C Backend provide its own definition of _setjmp when it knows there is one in the header files vi the HAVE__SETJMP #define? Reid.