longjmp-stub.after (271B)
1 /* better than nothing: in some cases, we accept to handle errors */ 2 #if HAVE_SETJMP 3 if (s1->error_set_jmp_enabled) { 4 longjmp(s1->error_jmp_buf, 1); 5 } else { 6 /* XXX: eliminate this someday */ 7 exit(1); 8 } 9 #else 10 exit(1); 11 #endif 12 }