typedef void *Label;
#define DOCOL 0
#define DOCON 1
#define DOVAR 2
#define DOUSER 3
#define DODEFER 4
#define DOSTRUC 5
#define DODOES 6
#define DOESJUMP 7
#include "machine.h"
typedef int Bool;
#define FLAG(b) (-(b))
#define FILEIO(error) (FLAG(error) & -37)
#define FILEEXIST(error) (FLAG(error) & -38)
#define F_TRUE (FLAG(0==0))
#define F_FALSE (FLAG(0!=0))
typedef unsigned char Char;
typedef double Float;
typedef char *Address;
#ifdef DIRECT_THREADED
typedef Label Xt;
#else
typedef Label *Xt;
#endif
Label *engine(Xt *ip, Cell *sp, Cell *rp, Float *fp, Address lp);
#ifndef DIRECT_THREADED
#define PFA(cfa) (((Cell *)cfa)+2)
#define PFA1(cfa) PFA(cfa)
#define CODE_ADDRESS(cfa) (*(Label *)(cfa))
#define DOES_CODE(cfa) (cfa[1])
#define DOES_CODE1(cfa) DOES_CODE(cfa)
#define MAKE_CF(cfa,ca) ((*(Label *)(cfa)) = ((Label)ca))
#define MAKE_DOES_CF(cfa,does_code) ({MAKE_CF(cfa,symbols[DODOES]); \
((Cell *)cfa)[1] = (Cell)does_code;})
#define DOES_HANDLER_SIZE (2*sizeof(Cell))
#define MAKE_DOES_HANDLER(addr) 0
#endif
#ifdef DEBUG
# define NAME(string) fprintf(stderr,"%08x: "string"\n",(Cell)ip);
#else
# define NAME(string)
#endif
#define CF(const) (-const-2)
#define CF_NIL -1
#ifndef CACHE_FLUSH
# define CACHE_FLUSH(addr,size)
#endif