From bd52c816f95a6aec471f194b94c2e195cf7f9988 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Sat, 18 Dec 2010 20:29:22 +0200 Subject: Cleanup the mainline PC code, and pc/ directory. --- io.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 2b2c8561..285a8276 100644 --- a/io.c +++ b/io.c @@ -212,7 +212,7 @@ extern NODE *ARGIND_node; extern NODE *ERRNO_node; extern NODE **fields_arr; -#if defined(OS2) || defined(__EMX__) || defined(__CYGWIN__) +#if defined(__EMX__) || defined(__CYGWIN__) /* binmode --- convert BINMODE to string for fopen */ static const char * @@ -2074,7 +2074,7 @@ gawk_pclose(struct redirect *rp) * except if popen() provides real pipes too */ -#if defined(VMS) || defined(OS2) || defined(__EMX__) +#if defined(VMS) || defined(__EMX__) /* gawk_popen --- open an IOBUF on a child process */ @@ -2115,7 +2115,7 @@ gawk_pclose(struct redirect *rp) rp->ifp = NULL; return (rval < 0 ? rval : aval); } -#else /* not (VMS || OS2) */ +#else /* not (VMS || __EMX__) */ static struct pipeinfo { char *command; @@ -2169,7 +2169,7 @@ gawk_pclose(struct redirect *rp) efree(pipes[cur].command); return rval; } -#endif /* not (VMS || OS2) */ +#endif /* not (VMS || __EMX__) */ #endif /* PIPES_SIMULATED */ -- cgit v1.2.3