mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-09-26 19:38:53 +02:00
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 */
|