a fun one added by kevinfish_ on Sun Feb 19 06:43:44 2017

 
/* next: execute itc, forths inner interpreter */
void next() {
loop:
	w = (cell *)*((cell *)ip)++;
#if PCC
	(**w)();
#else
	(*(void(*)())*w)();
#endif
	goto loop;
}