--- gforth/Attic/forth.h 1994/05/18 17:29:53 1.5 +++ gforth/Attic/forth.h 1994/09/05 17:36:17 1.9 @@ -1,5 +1,5 @@ /* - $Id: forth.h,v 1.5 1994/05/18 17:29:53 pazsan Exp $ + $Id: forth.h,v 1.9 1994/09/05 17:36:17 anton Exp $ Copyright 1992 by the ANSI figForth Development Group */ @@ -13,8 +13,15 @@ typedef void *Label; #define DOCON 1 #define DOVAR 2 #define DOUSER 3 -#define DODOES 4 -#define DOESJUMP 5 +#define DODEFER 4 +#define DODOES 5 +#define DOESJUMP 6 + +/* Some versions of some unices (Linux) have the symbol BIG_ENDIAN defined + in their standard headers. Make sure it's undefined -- Lennart */ +#ifdef BIG_ENDIAN +#undef BIG_ENDIAN +#endif #include "machine.h"