![]() ![]() | ![]() |
version 1.117, 2012/01/16 22:17:32 | version 1.118, 2012/03/23 20:49:44 |
---|---|
Line 269 extern Char *gforth_memcpy(Char * dest, | Line 269 extern Char *gforth_memcpy(Char * dest, |
#endif | #endif |
#ifdef STANDALONE | #ifdef STANDALONE |
jmp_buf throw_jmp_buf; | jmp_buf * throw_jmp_handler; |
void throw(int code) | void throw(int code) |
{ | { |
longjmp(throw_jmp_buf,code); /* !! or use siglongjmp ? */ | longjmp(*throw_jmp_handler,code); /* !! or use siglongjmp ? */ |
} | } |
#endif | #endif |