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

version 1.1, 1997/05/21 20:40:09 version 1.2, 1997/06/15 19:43:48
Line 85 Line 85
 #endif /* !_POSIX_VERSION */  #endif /* !_POSIX_VERSION */
   
 /* Posix systems use termios and the Posix signal functions. */  /* Posix systems use termios and the Posix signal functions. */
 #if defined (_POSIX_VERSION)  #if defined (_POSIX_VERSION) || defined (NeXT)
 #  if !defined (TERMIOS_MISSING)  #  if !defined (TERMIOS_MISSING)
 #    undef NEW_TTY_DRIVER  #    undef NEW_TTY_DRIVER
 #    define TERMIOS_TTY_DRIVER  #    define TERMIOS_TTY_DRIVER
 #    include <termios.h>  #    include <termios.h>
 #  endif /* !TERMIOS_MISSING */  #  endif /* !TERMIOS_MISSING */
   #endif /* _POSIX_VERSION || NeXT */
   
   #if defined (_POSIX_VERSION)
 #  define HAVE_POSIX_SIGNALS  #  define HAVE_POSIX_SIGNALS
 #  if !defined (O_NDELAY)  #  if !defined (O_NDELAY)
 #    define O_NDELAY O_NONBLOCK /* Posix-style non-blocking i/o */  #    define O_NDELAY O_NONBLOCK /* Posix-style non-blocking i/o */
Line 107 Line 110
    special character is disabled and to disable certain special     special character is disabled and to disable certain special
    characters.  Posix systems should set to 0, USG systems to -1. */     characters.  Posix systems should set to 0, USG systems to -1. */
 #if !defined (NEW_TTY_DRIVER) && !defined (_POSIX_VDISABLE)  #if !defined (NEW_TTY_DRIVER) && !defined (_POSIX_VDISABLE)
 #  if defined (_POSIX_VERSION)  #  if defined (_POSIX_VERSION) || defined (NeXT)
 #    define _POSIX_VDISABLE 0  #    define _POSIX_VDISABLE 0
 #  else /* !_POSIX_VERSION */  #  else /* !_POSIX_VERSION */
 #    define _POSIX_VDISABLE -1  #    define _POSIX_VDISABLE -1

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


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