summaryrefslogtreecommitdiffstats
path: root/waitlib/waitlib.h
diff options
context:
space:
mode:
authorSam Varshavchik2022-05-22 23:52:28 -0400
committerSam Varshavchik2022-05-22 23:52:31 -0400
commit83e37efc8ed785cd095eb585ff747e5702ec49b3 (patch)
tree15aed6da6214e9a03d91be1754cd351175349945 /waitlib/waitlib.h
parent1ce81fa6af52651628a0bffcd8b15fdb459901a5 (diff)
downloadcourier-libs-83e37efc8ed785cd095eb585ff747e5702ec49b3.tar.bz2
gcc 12, autotool updates, sqwebmail fixes.
Diffstat (limited to 'waitlib/waitlib.h')
-rw-r--r--waitlib/waitlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/waitlib/waitlib.h b/waitlib/waitlib.h
index 7d36287..163a6e5 100644
--- a/waitlib/waitlib.h
+++ b/waitlib/waitlib.h
@@ -32,7 +32,7 @@
*/
void wait_reap( void (*)(pid_t, int), /* Called to process reaped child */
- RETSIGTYPE (*)(int)); /* Should point back to signal handler */
+ void (*)(int)); /* Should point back to signal handler */
/*
** Main program can call wait_block and wait_clear to temporarily
@@ -40,7 +40,7 @@ void wait_reap( void (*)(pid_t, int), /* Called to process reaped child */
*/
void wait_block();
-void wait_clear(RETSIGTYPE (*)(int)); /* The signal handler */
+void wait_clear(void (*)(int)); /* The signal handler */
/*
** wait_restore should be called instead of signal(SIGCHLD, SIG_DFL)
@@ -60,7 +60,7 @@ void wait_restore();
*/
void wait_forchild( void (*)(pid_t, int), /* Reaper */
- RETSIGTYPE (*)(int)); /* Signal handler stub */
+ void (*)(int)); /* Signal handler stub */
/*
** wait_startchildren() is a convenient function to start a given number