mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-27 22:33:15 +08:00
04f801456a
- Added tests for login and daemon and OpenBSD replacements for when they are absent.
10 lines
177 B
C
10 lines
177 B
C
#ifndef _BSD_DAEMON_H
|
|
#define _BSD_DAEMON_H
|
|
|
|
#include "config.h"
|
|
#ifndef HAVE_DAEMON
|
|
int daemon(int nochdir, int noclose);
|
|
#endif /* !HAVE_DAEMON */
|
|
|
|
#endif /* _BSD_DAEMON_H */
|