summaryrefslogtreecommitdiff
path: root/libexec/rexecd
diff options
context:
space:
mode:
authoritojun <itojun@NetBSD.org>2002-09-23 03:32:34 +0000
committeritojun <itojun@NetBSD.org>2002-09-23 03:32:34 +0000
commita9fc5f306a72ef2481ea96357f7b8e5397dffce0 (patch)
tree177e718403f4f2f4cc5aec45599452628862be53 /libexec/rexecd
parent3d91bfef7951a486cfa263594b8978a2d44a975a (diff)
poll.h, not sys/poll.h
Diffstat (limited to 'libexec/rexecd')
-rw-r--r--libexec/rexecd/rexecd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c
index ea551f41c90..e15ddfcfe1f 100644
--- a/libexec/rexecd/rexecd.c
+++ b/libexec/rexecd/rexecd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rexecd.c,v 1.11 2002/06/05 23:05:34 itojun Exp $ */
+/* $NetBSD: rexecd.c,v 1.12 2002/09/23 03:32:35 itojun Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -40,13 +40,12 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
#if 0
static char sccsid[] = "from: @(#)rexecd.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: rexecd.c,v 1.11 2002/06/05 23:05:34 itojun Exp $");
+__RCSID("$NetBSD: rexecd.c,v 1.12 2002/09/23 03:32:35 itojun Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>
#include <sys/ioctl.h>
-#include <sys/poll.h>
#include <sys/socket.h>
#include <sys/syslog.h>
#include <sys/time.h>
@@ -64,6 +63,7 @@ __RCSID("$NetBSD: rexecd.c,v 1.11 2002/06/05 23:05:34 itojun Exp $");
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <poll.h>
void error __P((const char *, ...))
__attribute__((__format__(__printf__, 1, 2)));