Shaul Karl <[EMAIL PROTECTED]> writes:

> #include <setjmp.h>
> 
> int main()
> {
>     jmp_buf test_env;
>     jmp_buf *test_env_p = &test_env;
> 
>     test_env = *test_env_p;
>     return 0;
> }

I suspect that line 9 is the assignment before the return statement.
The assignment can be, and probably is, illegal: jmp_buf is not
a scalar type, but an array, and you cannot assign arrays.

-- 
Oleg Goldshmidt | [EMAIL PROTECTED] 
If it ain't broken, it hasn't got enough features yet.

=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to