1 /*
2  * Copyright (c) 1997, 2000, 01
3  *    Motoyuki Kasahara
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15 
16 #ifndef DAEMON_H
17 #define DAEMON_H
18 
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22 
23 
24 /*
25  * Function declarations.
26  */
27 #ifdef __STDC__
28 int daemonize(void);
29 #else
30 int daemonize();
31 #endif
32 
33 #endif /* not DAEMON_H */
34