--- gforth/engine/engine.c 1998/12/20 23:17:56 1.9 +++ gforth/engine/engine.c 1999/08/20 17:22:51 1.15 @@ -80,6 +80,11 @@ int emitcounter; #endif #define NULLC '\0' +#ifdef MEMCMP_AS_SUBROUTINE +extern int gforth_memcmp(const char * s1, const char * s2, size_t n); +#define memcmp(s1,s2,n) gforth_memcmp(s1,s2,n) +#endif + #ifdef HAS_FILE char *cstr(Char *from, UCell size, int clear) /* return a C-string corresponding to the Forth string ( FROM SIZE ). @@ -132,6 +137,8 @@ char *tilde_cstr(Char *from, UCell size, UCell i; for (i=1; i