poll.h, not sys/poll.h

This commit is contained in:
itojun 2002-09-23 03:36:03 +00:00
parent 0dbc7886c7
commit f46e921837
12 changed files with 29 additions and 29 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: apmd.c,v 1.23 2002/09/18 21:06:39 mycroft Exp $ */
/* $NetBSD: apmd.c,v 1.24 2002/09/23 03:36:03 itojun Exp $ */
/*-
* Copyright (c) 1996, 2000 The NetBSD Foundation, Inc.
@ -54,7 +54,7 @@
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/wait.h>
#include <sys/poll.h>
#include <poll.h>
#include <machine/apmvar.h>
#include <err.h>
#include "pathnames.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: mapper.c,v 1.12 2002/09/19 03:31:19 mycroft Exp $ */
/* $NetBSD: mapper.c,v 1.13 2002/09/23 03:36:04 itojun Exp $ */
/* Mapper for connections between MRouteD multicast routers.
* Written by Pavel Curtis <Pavel@PARC.Xerox.Com>
@ -37,7 +37,7 @@
#include <string.h>
#include <netdb.h>
#include <sys/time.h>
#include <sys/poll.h>
#include <poll.h>
#include "defs.h"
#include <arpa/inet.h>
#include <stdarg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: mld6.c,v 1.7 2002/09/19 16:45:58 mycroft Exp $ */
/* $NetBSD: mld6.c,v 1.8 2002/09/23 03:36:04 itojun Exp $ */
/* $KAME: mld6.c,v 1.9 2000/12/04 06:29:37 itojun Exp $ */
/*
@ -34,7 +34,7 @@
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/poll.h>
#include <poll.h>
#include <unistd.h>
#include <signal.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: moused.c,v 1.9 2002/09/20 19:49:59 mycroft Exp $ */
/* $NetBSD: moused.c,v 1.10 2002/09/23 03:36:04 itojun Exp $ */
/**
** Copyright (c) 1995 Michael Smith, All rights reserved.
**
@ -48,7 +48,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: moused.c,v 1.9 2002/09/20 19:49:59 mycroft Exp $");
__RCSID("$NetBSD: moused.c,v 1.10 2002/09/23 03:36:04 itojun Exp $");
#endif /* not lint */
#include <ctype.h>
@ -72,7 +72,7 @@ __RCSID("$NetBSD: moused.c,v 1.9 2002/09/20 19:49:59 mycroft Exp $");
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/poll.h>
#include <poll.h>
#include <unistd.h>
#define MAX_CLICKTHRESHOLD 2000 /* 2 seconds */

View File

@ -1,4 +1,4 @@
/* $NetBSD: mrinfo.c,v 1.16 2002/09/19 16:45:59 mycroft Exp $ */
/* $NetBSD: mrinfo.c,v 1.17 2002/09/23 03:36:04 itojun Exp $ */
/*
* This tool requests configuration info from a multicast router
@ -80,14 +80,14 @@
static char rcsid[] =
"@(#) Header: mrinfo.c,v 1.6 93/04/08 15:14:16 van Exp (LBL)";
#else
__RCSID("$NetBSD: mrinfo.c,v 1.16 2002/09/19 16:45:59 mycroft Exp $");
__RCSID("$NetBSD: mrinfo.c,v 1.17 2002/09/23 03:36:04 itojun Exp $");
#endif
#endif
#include <string.h>
#include <netdb.h>
#include <sys/time.h>
#include <sys/poll.h>
#include <poll.h>
#include "defs.h"
#include <arpa/inet.h>
#include <stdarg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: mtrace.c,v 1.24 2002/09/19 16:45:59 mycroft Exp $ */
/* $NetBSD: mtrace.c,v 1.25 2002/09/23 03:36:05 itojun Exp $ */
/*
* mtrace.c
@ -52,13 +52,13 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: mtrace.c,v 1.24 2002/09/19 16:45:59 mycroft Exp $");
__RCSID("$NetBSD: mtrace.c,v 1.25 2002/09/23 03:36:05 itojun Exp $");
#endif
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/poll.h>
#include <poll.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <ctype.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: nfsd.c,v 1.38 2002/09/20 19:48:58 mycroft Exp $ */
/* $NetBSD: nfsd.c,v 1.39 2002/09/23 03:36:05 itojun Exp $ */
/*
* Copyright (c) 1989, 1993, 1994
@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993, 1994\n\
#if 0
static char sccsid[] = "@(#)nfsd.c 8.9 (Berkeley) 3/29/95";
#else
__RCSID("$NetBSD: nfsd.c,v 1.38 2002/09/20 19:48:58 mycroft Exp $");
__RCSID("$NetBSD: nfsd.c,v 1.39 2002/09/23 03:36:05 itojun Exp $");
#endif
#endif /* not lint */
@ -59,7 +59,7 @@ __RCSID("$NetBSD: nfsd.c,v 1.38 2002/09/20 19:48:58 mycroft Exp $");
#include <sys/mount.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/poll.h>
#include <poll.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rbootd.c,v 1.16 2002/09/19 03:04:13 mycroft Exp $ */
/* $NetBSD: rbootd.c,v 1.17 2002/09/23 03:36:05 itojun Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -57,13 +57,13 @@ __COPYRIGHT(
#if 0
static char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: rbootd.c,v 1.16 2002/09/19 03:04:13 mycroft Exp $");
__RCSID("$NetBSD: rbootd.c,v 1.17 2002/09/23 03:36:05 itojun Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>
#include <sys/time.h>
#include <sys/poll.h>
#include <poll.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rpcb_svc_com.c,v 1.6 2000/08/03 00:07:22 fvdl Exp $ */
/* $NetBSD: rpcb_svc_com.c,v 1.7 2002/09/23 03:36:05 itojun Exp $ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@ -42,7 +42,6 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/poll.h>
#include <sys/socket.h>
#include <rpc/rpc.h>
#include <rpc/rpcb_prot.h>
@ -51,6 +50,7 @@
#include <syslog.h>
#include <unistd.h>
#include <stdio.h>
#include <poll.h>
#ifdef PORTMAP
#include <netinet/in.h>
#include <rpc/pmap_prot.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: util.c,v 1.7 2001/04/30 00:36:08 fvdl Exp $ */
/* $NetBSD: util.c,v 1.8 2002/09/23 03:36:06 itojun Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -42,7 +42,7 @@
#include <net/if.h>
#include <netinet/in.h>
#include <ifaddrs.h>
#include <sys/poll.h>
#include <poll.h>
#include <rpc/rpc.h>
#include <errno.h>
#include <stdlib.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtadvd.c,v 1.24 2002/09/20 19:51:34 mycroft Exp $ */
/* $NetBSD: rtadvd.c,v 1.25 2002/09/23 03:36:06 itojun Exp $ */
/* $KAME: rtadvd.c,v 1.74 2002/09/08 01:25:17 itojun Exp $ */
/*
@ -35,7 +35,6 @@
#include <sys/uio.h>
#include <sys/time.h>
#include <sys/queue.h>
#include <sys/poll.h>
#include <net/if.h>
#include <net/route.h>
@ -57,6 +56,7 @@
#include <stdlib.h>
#include <syslog.h>
#include <util.h>
#include <poll.h>
#include "rtadvd.h"
#include "rrenum.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: run.c,v 1.7 2002/09/19 00:45:47 mycroft Exp $ */
/* $NetBSD: run.c,v 1.8 2002/09/23 03:36:06 itojun Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -48,12 +48,12 @@
#include <termios.h>
#include <util.h>
#include <err.h>
#include <poll.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/poll.h>
#include "sushi.h"
#include "run.h"