# HG changeset patch # User Gerd Moellmann # Date 958837895 0 # Node ID bad1d68a57e3901ee986476e506b779731789a5a # Parent 659202362f2b1aec09c50cc1da0cd84a566f111b (setup_pty): Treat case that UNIX98_PTYS is defined like SYSV_PTYS. diff -r 659202362f2b -r bad1d68a57e3 src/sysdep.c --- a/src/sysdep.c Sat May 20 15:51:13 2000 +0000 +++ b/src/sysdep.c Sat May 20 15:51:35 2000 +0000 @@ -1871,7 +1871,7 @@ Since the latter lossage is more benign, we may as well lose that way. -- cph */ #ifdef FIONBIO -#ifdef SYSV_PTYS +#if defined(SYSV_PTYS) || defined(UNIX98_PTYS) { int on = 1; ioctl (fd, FIONBIO, &on);