fixes init script for non ipv6 enabled systems #472755
[packages/xinetd.git] / xinetd / signals.h
1 /*
2  * (c) Copyright 1998-2001 by Rob Braun
3  * All rights reserved.  The file named COPYRIGHT specifies the terms
4  * and conditions for redistribution.
5  */
6 #ifndef _X_SIGNALS
7 #define _X_SIGNALS
8
9 #include "defs.h"
10
11 #if defined(NO_POSIX_SIGS)
12 int sigprocmask(int how,sigset_t *set,sigset_t *oset);
13 int sigaction(int sig,struct sigaction *sap,struct sigaction *osap);
14 #endif
15 status_e signal_init(void);
16 char *sig_name(int sig);
17 void signal_default_state(void);
18 void check_pipe(void);
19
20 #endif