Diff for /gforth/engine/main.c between versions 1.239 and 1.240

version 1.239, 2011/12/31 15:29:26 version 1.240, 2012/01/16 22:17:32
Line 276  int gforth_memcmp(const char * s1, const Line 276  int gforth_memcmp(const char * s1, const
 {  {
   return memcmp(s1, s2, n);    return memcmp(s1, s2, n);
 }  }
   
   Char *gforth_memmove(Char * dest, const Char* src, Cell n)
   {
     return memmove(dest, src, n);
   }
   
   Char *gforth_memset(Char * s, Cell c, UCell n)
   {
     return memset(s, c, n);
   }
   
   Char *gforth_memcpy(Char * dest, const Char* src, Cell n)
   {
     return memcpy(dest, src, n);
   }
 #endif  #endif
   
 static Cell max(Cell a, Cell b)  static Cell max(Cell a, Cell b)

Removed from v.1.239  
changed lines
  Added in v.1.240


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