aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:04:04 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:04:04 +0300
commit56073f0c0343be08ea16b1ea6b34715eacc89a05 (patch)
tree72a7b3a2cc25db82051d55099a30a46bd700495f /io.c
parent456fd40ebbb78fe31b28bbe0907282c685bce170 (diff)
parentaaa85643b352f867cfe7198f313b4481ad1f544d (diff)
downloadegawk-56073f0c0343be08ea16b1ea6b34715eacc89a05.tar.gz
egawk-56073f0c0343be08ea16b1ea6b34715eacc89a05.tar.bz2
egawk-56073f0c0343be08ea16b1ea6b34715eacc89a05.zip
Merge branch 'master' into feature/shadow-builtins
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 0d29c740..50310ed2 100644
--- a/io.c
+++ b/io.c
@@ -2313,7 +2313,7 @@ wait_any(int interesting) /* pid of interest, if any */
sigaddset(& set, SIGQUIT);
sigprocmask(SIG_BLOCK, & set, & oldset);
#else
- RETSIGTYPE (*hstat)(int), (*istat)(int), (*qstat)(int);
+ void (*hstat)(int), (*istat)(int), (*qstat)(int);
istat = signal(SIGINT, SIG_IGN);
#endif