--- gforth/engine/memmove.c 1997/05/21 20:40:10 1.1 +++ gforth/engine/memmove.c 1998/10/25 23:15:48 1.2 @@ -19,9 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -char *memmove(char *dest, const char *src, long n) +#include "forth.h" + +Char *memmove(Char *dest, const Char *src, Cell n) { - int i; + Cell i; if (dest