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]
- (main_buf = *main_buf_p) is not syntacticly like (i = *j... Shaul Karl
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Nadav Har'El
- Re: (main_buf = *main_buf_p) is not syntacticly... Shachar Shemesh
- Re: (main_buf = *main_buf_p) is not syntact... Nadav Har'El
- Re: (main_buf = *main_buf_p) is not syntacticly... Adi Stav
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Shachar Shemesh
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Ermon (Eyal Sagi)
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Ralph E. Sapphism
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Adi Stav
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Oleg Goldshmidt
- Re: (main_buf = *main_buf_p) is not syntacticly lik... Shaul Karl
- Re: (main_buf = *main_buf_p) is not syntacticly... Nadav Har'El
- Re: (main_buf = *main_buf_p) is not syntact... Shachar Shemesh
- Re: (main_buf = *main_buf_p) is not syntact... Shachar Shemesh
- Re: (main_buf = *main_buf_p) is not syntacticly... Adi Stav
- Re: (main_buf = *main_buf_p) is not syntact... Shachar Shemesh
- Re: (main_buf = *main_buf_p) is not syn... Adi Stav
- Re: (main_buf = *main_buf_p) is no... Ury Segal
