Diff for /gforth/engine/memcmp.c between versions 1.1 and 1.2

version 1.1, 1997/05/21 20:40:10 version 1.2, 1998/10/25 23:15:48
Line 19 Line 19
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */  */
   
 int memcmp(const char *s1, const char *s2, long n)  #include "forth.h"
   
   Cell memcmp(const Char *s1, const Char *s2, Cell n)
 {  {
   int i;    Cell i;
   
   for (i=0; i<n; i++)    for (i=0; i<n; i++)
     if (s1[i] != s2[i])      if (s1[i] != s2[i])

Removed from v.1.1  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>