summaryrefslogtreecommitdiffstats
path: root/ctdb/lib/util/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'ctdb/lib/util/util.h')
-rw-r--r--ctdb/lib/util/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/lib/util/util.h b/ctdb/lib/util/util.h
index c7734d1847..87aaa451e7 100644
--- a/ctdb/lib/util/util.h
+++ b/ctdb/lib/util/util.h
@@ -100,12 +100,12 @@ void (*CatchSignal(int signum,void (*handler)(int )))(int);
/**
Ignore SIGCLD via whatever means is necessary for this OS.
**/
-void CatchChild(void);
+void (*CatchChild(void))(int);
/**
Catch SIGCLD but leave the child around so it's status can be reaped.
**/
-void CatchChildLeaveStatus(void);
+void (*CatchChildLeaveStatus(void))(int);
/* The following definitions come from lib/util/util_str.c */