1 /* $Id: daemon.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ 2 3 #ifndef _DAEMON_H 4 #define _DAEMON_H 5 6 #pragma ident "%Z%%M% %I% %E% SMI" 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 #include "config.h" 13 #ifndef HAVE_DAEMON 14 int daemon(int nochdir, int noclose); 15 #endif /* !HAVE_DAEMON */ 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif /* _DAEMON_H */ 22