Diff for /gforth/engine/io.c between versions 1.25 and 1.26

version 1.25, 2006/12/31 13:39:17 version 1.26, 2007/04/09 22:36:01
Line 654  Cell getkey(FILE * stream) Line 654  Cell getkey(FILE * stream)
   return result==0 ? EOF : c;    return result==0 ? EOF : c;
 }  }
   
   #ifdef STANDALONE
   void emit_char(char x)
   {
     putc(x, stdout);
   }
   
   void type_chars(char *addr, unsigned int l)
   {
     fwrite(addr, l, 1, stdout);
   }
   #endif
   
 #ifdef TEST  #ifdef TEST
   
 #include <time.h>  #include <time.h>

Removed from v.1.25  
changed lines
  Added in v.1.26


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