summaryrefslogtreecommitdiff
path: root/openbsd-compat/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/daemon.c')
-rw-r--r--openbsd-compat/daemon.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/openbsd-compat/daemon.c b/openbsd-compat/daemon.c
index 06625127c..6dd45f6a7 100644
--- a/openbsd-compat/daemon.c
+++ b/openbsd-compat/daemon.c
@@ -32,12 +32,11 @@
32#ifndef HAVE_DAEMON 32#ifndef HAVE_DAEMON
33 33
34#if defined(LIBC_SCCS) && !defined(lint) 34#if defined(LIBC_SCCS) && !defined(lint)
35static char rcsid[] = "$OpenBSD: daemon.c,v 1.3 2003/06/02 20:18:34 millert Exp $"; 35static char rcsid[] = "$OpenBSD: daemon.c,v 1.5 2003/07/15 17:32:41 deraadt Exp $";
36#endif /* LIBC_SCCS and not lint */ 36#endif /* LIBC_SCCS and not lint */
37 37
38int 38int
39daemon(nochdir, noclose) 39daemon(int nochdir, int noclose)
40 int nochdir, noclose;
41{ 40{
42 int fd; 41 int fd;
43 42