OJUMP
#define isjump(n) ((n)->ctype == OJUMP)
static Cell breakcell = { OJUMP, JBREAK, NULL, NULL, 0.0, NUM, NULL };
static Cell contcell = { OJUMP, JCONT, NULL, NULL, 0.0, NUM, NULL };
static Cell nextcell = { OJUMP, JNEXT, NULL, NULL, 0.0, NUM, NULL };
static Cell nextfilecell = { OJUMP, JNEXTFILE, NULL, NULL, 0.0,
static Cell exitcell = { OJUMP, JEXIT, NULL, NULL, 0.0, NUM, NULL };
static Cell retcell = { OJUMP, JRET, NULL, NULL, 0.0, NUM, NULL };
static CELL breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM, 0 };
static CELL contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM, 0 };
static CELL nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM, 0 };
static CELL exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM, 0 };