(setup_pty): Treat case that UNIX98_PTYS is defined

like SYSV_PTYS.
This commit is contained in:
Gerd Moellmann 2000-05-20 15:51:35 +00:00
parent 71125fb836
commit e20caf05ae

View file

@ -1871,7 +1871,7 @@ setup_pty (fd)
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);