fixes init script for non ipv6 enabled systems #472755
[packages/xinetd.git] / xinetd / child.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_CHILD
7 #define _X_CHILD
8
9 #include "defs.h"
10
11 #ifdef __GNUC__
12 __attribute__ ((noreturn))
13 #endif
14 void child_process(struct server *serp);
15 void child_exit(void);
16 #ifdef __GNUC__
17 __attribute__ ((noreturn))
18 #endif
19 void exec_server( const struct server *serp );
20
21 #endif