Diff for /gforth/engine/engine.c between versions 1.117 and 1.118

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
   

Removed from v.1.117  
changed lines
  Added in v.1.118


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>