--- gforth/engine/engine.c 2003/01/26 20:56:38 1.58 +++ gforth/engine/engine.c 2003/01/27 18:59:42 1.60 @@ -72,14 +72,6 @@ #define ftello ftell #endif -struct F83Name { - struct F83Name *next; /* the link field for old hands */ - char countetc; - char name[0]; -}; - -#define F83NAME_COUNT(np) ((np)->countetc & 0x1f) - #define NULLC '\0' #ifdef MEMCMP_AS_SUBROUTINE @@ -297,7 +289,7 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * xts[i] = symbols[i] = (Label)routines[i]; for (; routines[i]!=0; i++) { if (i>=MAX_SYMBOLS) { - fprintf(stderr,"gforth-ditc: more than %d primitives\n",MAX_SYMBOLS); + fprintf(stderr,"gforth-ditc: more than %ld primitives\n",(long)MAX_SYMBOLS); exit(1); } xts[i] = symbols[i] = &routines[i];