Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v101/test/jmptest.c
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

18 lines
231 B
C

#include <stdio.h>
#include <setjmp.h>
jmp_buf env;
main()
{
WORD i; /* Temp */
if((i=setjmp(env))) /* only for the longjump return */
{
printf("Longjmp returns %d\n",i);
exit();
}
b();
}
b()
{
longjmp(env,12);
}