diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-06 21:39:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-06 21:39:57 +0200 |
commit | c399d8f8226bba46d34b8672ca50722605f95e37 (patch) | |
tree | d17c6dfa1450428f5efac80418d89276681099d8 /io.c | |
parent | 77620464b7805e03fcfc5de21a6e46b32426c6f0 (diff) | |
download | egawk-c399d8f8226bba46d34b8672ca50722605f95e37.tar.gz egawk-c399d8f8226bba46d34b8672ca50722605f95e37.tar.bz2 egawk-c399d8f8226bba46d34b8672ca50722605f95e37.zip |
MBS support tweaks for DJGPP and z/OS.
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1594,7 +1594,7 @@ two_way_open(const char *str, struct redirect *rp) } #endif /* HAVE_SOCKETS */ -#ifdef HAVE_TERMIOS_H +#if defined(HAVE_TERMIOS_H) && ! defined(ZOS_USS) /* case 2: use ptys for two-way communications to child */ if (! no_ptys && pty_vs_pipe(str)) { static int initialized = FALSE; @@ -1809,7 +1809,7 @@ two_way_open(const char *str, struct redirect *rp) first_pty_letter = '\0'; /* reset for next command */ return TRUE; } -#endif /* HAVE_TERMIOS_H */ +#endif /* defined(HAVE_TERMIOS_H) && ! defined(ZOS_USS) */ use_pipes: #ifndef PIPES_SIMULATED /* real pipes */ |