aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:04:29 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:04:29 +0300
commit559a3395fcb32cdee8a6cdf482656c0b78628f8a (patch)
treeb35e78654b23efd0c21a6da68b102626cf2e9bd0 /io.c
parent613c6ddd082a0b241a59260927929cc65ae61f9b (diff)
parentaaa85643b352f867cfe7198f313b4481ad1f544d (diff)
downloadegawk-559a3395fcb32cdee8a6cdf482656c0b78628f8a.tar.gz
egawk-559a3395fcb32cdee8a6cdf482656c0b78628f8a.tar.bz2
egawk-559a3395fcb32cdee8a6cdf482656c0b78628f8a.zip
Merge branch 'master' into feature/wasted-byte
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 1c3d6e24..50f0989b 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