#include "i.h" void _ModuleEntryPoint (fns *f) { jmp_buf env; f->puts("hello"); if (f->sjmp(env) == 0) { f->puts("did the setjmp, now calling longjmp"); f->ljmp(env, -1); } f->puts("back from longjmp"); }