aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-02-23 05:55:29 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-02-23 05:55:29 +0200
commit82edbe5494206a6c1e8177149b10f33ab0aab4c4 (patch)
tree35bfb901c3d0821407b0d49f8d174acbfdeaad46 /io.c
parent47fc30bb2837ee79aea535d2c34cbea6ba01643b (diff)
parent7704e90c4f3aa4b3ce093bd9d67dee2b70f5acbc (diff)
downloadegawk-82edbe5494206a6c1e8177149b10f33ab0aab4c4.tar.gz
egawk-82edbe5494206a6c1e8177149b10f33ab0aab4c4.tar.bz2
egawk-82edbe5494206a6c1e8177149b10f33ab0aab4c4.zip
Merge branch 'master' into feature/api-mpfr
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index d65f2aaa..cced126e 100644
--- a/io.c
+++ b/io.c
@@ -275,7 +275,7 @@ static IOBUF *iop_finish(IOBUF *iop);
static int gawk_pclose(struct redirect *rp);
static int str2mode(const char *mode);
static int two_way_open(const char *str, struct redirect *rp, int extfd);
-static int pty_vs_pipe(const char *command);
+static bool pty_vs_pipe(const char *command);
static void find_input_parser(IOBUF *iop);
static bool find_output_wrapper(awk_output_buf_t *outbuf);
static void init_output_wrapper(awk_output_buf_t *outbuf);
@@ -3915,7 +3915,7 @@ set_FS:
* This works by checking if PROCINFO["command", "pty"] exists and is true.
*/
-static int
+static bool
pty_vs_pipe(const char *command)
{
#ifdef HAVE_TERMIOS_H