From 7bc7e2322057e16bfdb2a3b6289d3b300305f0e6 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sun, 25 Nov 2007 01:28:24 +0000 Subject: [PATCH] Add some #include's to fix 'implicit declaration of...' warnings. --- gnu/usr.bin/sort/long-options.c | 5 +++++ lib/libatm/ip_addr.c | 3 ++- lib/libc/rpc/get_myaddress.c | 3 ++- lib/libc/stdio/local.h | 3 ++- lib/libc/uuid/uuid_name_lookup.c | 3 ++- lib/libc_r/uthread/uthread_sig.c | 3 ++- lib/libncp/ncpl_queue.c | 3 ++- lib/liby/main.c | 3 +++ libexec/bootpd/rtmsg.c | 3 ++- libexec/rexecd/rexecd.c | 3 ++- libexec/rpc.rusersd/rusers_proc.c | 3 ++- sbin/fsck/memzone.c | 3 ++- sbin/mountctl/mountctl.c | 3 ++- usr.bin/gprof/gprof.h | 3 ++- usr.bin/keylogin/keylogin.c | 3 ++- usr.bin/keylogout/keylogout.c | 3 ++- usr.bin/locate/bigram/locate.bigram.c | 3 ++- usr.bin/rpcinfo/rpcinfo.c | 4 +++- usr.bin/systat/ifstat.c | 3 ++- usr.bin/telnet/network.c | 3 ++- usr.bin/telnet/terminal.c | 3 ++- usr.bin/telnet/utilities.c | 3 ++- usr.sbin/802_11/l2_packet.c | 3 ++- usr.sbin/apmd/apmdparse.y | 3 ++- usr.sbin/atm/atmarpd/atmarp_log.c | 3 ++- usr.sbin/atm/atmarpd/atmarpd.c | 3 ++- usr.sbin/atm/scspd/scsp_hfsm.c | 3 ++- usr.sbin/atm/scspd/scspd.c | 3 ++- usr.sbin/bootparamd/callbootd/callbootd.c | 3 ++- usr.sbin/i4b/g711conv/g711conv.c | 3 ++- usr.sbin/mrouted/testrsrr/testrsrr.c | 3 ++- usr.sbin/portmap/pmap_check.c | 3 ++- usr.sbin/pppd/ipcp.c | 3 ++- usr.sbin/rpc.statd/file.c | 3 ++- usr.sbin/rpc.ypupdated/yp_dbupdate.c | 3 ++- usr.sbin/stallion/stlstty/stlstty.c | 3 ++- usr.sbin/ypset/ypset.c | 3 ++- 37 files changed, 79 insertions(+), 35 deletions(-) diff --git a/gnu/usr.bin/sort/long-options.c b/gnu/usr.bin/sort/long-options.c index dd7a8ca148..63cdc91085 100644 --- a/gnu/usr.bin/sort/long-options.c +++ b/gnu/usr.bin/sort/long-options.c @@ -17,11 +17,16 @@ /* Jim Meyering (meyering@comco.com) */ +/* + * $DragonFly: src/gnu/usr.bin/sort/long-options.c,v 1.2 2007/11/25 01:28:22 swildner Exp $ + */ + #ifdef HAVE_CONFIG_H #include #endif #include +#include #include #include "long-options.h" diff --git a/lib/libatm/ip_addr.c b/lib/libatm/ip_addr.c index bd1bc33e26..c6ac4a16e8 100644 --- a/lib/libatm/ip_addr.c +++ b/lib/libatm/ip_addr.c @@ -24,7 +24,7 @@ * notice must be reproduced on all copies. * * @(#) $FreeBSD: src/lib/libatm/ip_addr.c,v 1.3.2.1 2001/09/28 16:52:10 dillon Exp $ - * @(#) $DragonFly: src/lib/libatm/ip_addr.c,v 1.3 2004/09/23 20:20:59 geekgod Exp $ + * @(#) $DragonFly: src/lib/libatm/ip_addr.c,v 1.4 2007/11/25 01:28:22 swildner Exp $ * */ @@ -52,6 +52,7 @@ #include #include +#include #include #include "libatm.h" diff --git a/lib/libc/rpc/get_myaddress.c b/lib/libc/rpc/get_myaddress.c index 8a6f856e7f..165e5a54d4 100644 --- a/lib/libc/rpc/get_myaddress.c +++ b/lib/libc/rpc/get_myaddress.c @@ -29,7 +29,7 @@ * @(#)get_myaddress.c 1.4 87/08/11 Copyr 1984 Sun Micro * @(#)get_myaddress.c 2.1 88/07/29 4.0 RPCSRC * $FreeBSD: src/lib/libc/rpc/get_myaddress.c,v 1.18.2.1 2003/01/01 23:55:34 jdp Exp $ - * $DragonFly: src/lib/libc/rpc/get_myaddress.c,v 1.4 2005/11/13 12:27:04 swildner Exp $ + * $DragonFly: src/lib/libc/rpc/get_myaddress.c,v 1.5 2007/11/25 01:28:22 swildner Exp $ */ /* @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 3bba1360f0..258edc0bb0 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -36,10 +36,11 @@ * @(#)local.h 8.3 (Berkeley) 7/3/94 * * $FreeBSD: src/lib/libc/stdio/local.h,v 1.1.1.2.6.1 2001/03/05 11:27:49 obrien Exp $ - * $DragonFly: src/lib/libc/stdio/local.h,v 1.10 2005/12/20 00:21:53 davidxu Exp $ + * $DragonFly: src/lib/libc/stdio/local.h,v 1.11 2007/11/25 01:28:22 swildner Exp $ */ #include /* for off_t */ +#include #include /* for wchar_t */ #ifndef _MACHINE_STDINT_H_ diff --git a/lib/libc/uuid/uuid_name_lookup.c b/lib/libc/uuid/uuid_name_lookup.c index 9d72e32846..eb26e2c1da 100644 --- a/lib/libc/uuid/uuid_name_lookup.c +++ b/lib/libc/uuid/uuid_name_lookup.c @@ -31,7 +31,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $DragonFly: src/lib/libc/uuid/uuid_name_lookup.c,v 1.4 2007/06/17 07:56:58 dillon Exp $ + * $DragonFly: src/lib/libc/uuid/uuid_name_lookup.c,v 1.5 2007/11/25 01:28:23 swildner Exp $ */ /* * Implement UUID-to-NAME and NAME-to-UUID functions @@ -43,6 +43,7 @@ #include #include #include +#include /* * Implement a Red-Black tree to cache the UUID table and perform lookups diff --git a/lib/libc_r/uthread/uthread_sig.c b/lib/libc_r/uthread/uthread_sig.c index 615fea626d..dd18e0d600 100644 --- a/lib/libc_r/uthread/uthread_sig.c +++ b/lib/libc_r/uthread/uthread_sig.c @@ -30,7 +30,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/lib/libc_r/uthread/uthread_sig.c,v 1.25.2.13 2002/10/22 14:44:03 fjoe Exp $ - * $DragonFly: src/lib/libc_r/uthread/uthread_sig.c,v 1.5 2007/01/08 21:41:53 dillon Exp $ + * $DragonFly: src/lib/libc_r/uthread/uthread_sig.c,v 1.6 2007/11/25 01:28:23 swildner Exp $ */ #include #include @@ -41,6 +41,7 @@ #include #include #include +#include #include "pthread_private.h" /* Prototypes: */ diff --git a/lib/libncp/ncpl_queue.c b/lib/libncp/ncpl_queue.c index c10772e4df..983f37b800 100644 --- a/lib/libncp/ncpl_queue.c +++ b/lib/libncp/ncpl_queue.c @@ -30,7 +30,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/lib/libncp/ncpl_queue.c,v 1.2 1999/10/31 03:39:03 bp Exp $ - * $DragonFly: src/lib/libncp/ncpl_queue.c,v 1.2 2003/06/17 04:26:50 dillon Exp $ + * $DragonFly: src/lib/libncp/ncpl_queue.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ * * NetWare queue interface * @@ -38,6 +38,7 @@ #include #include #include +#include #include int diff --git a/lib/liby/main.c b/lib/liby/main.c index 733bf05785..e21a064320 100644 --- a/lib/liby/main.c +++ b/lib/liby/main.c @@ -31,8 +31,11 @@ * SUCH DAMAGE. * * @(#)main.c 8.1 (Berkeley) 6/4/93 + * $DragonFly: src/lib/liby/main.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ +#include + int main(void) { diff --git a/libexec/bootpd/rtmsg.c b/libexec/bootpd/rtmsg.c index 546786b49e..641e4bcbef 100644 --- a/libexec/bootpd/rtmsg.c +++ b/libexec/bootpd/rtmsg.c @@ -40,7 +40,7 @@ /* * from arp.c 8.2 (Berkeley) 1/2/94 * $FreeBSD: src/libexec/bootpd/rtmsg.c,v 1.10 1999/08/28 00:09:19 peter Exp $ - * $DragonFly: src/libexec/bootpd/rtmsg.c,v 1.3 2003/11/14 03:54:29 dillon Exp $ + * $DragonFly: src/libexec/bootpd/rtmsg.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ #include @@ -66,6 +66,7 @@ #include #include +#include #include #include #include diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c index e5132f7a9c..510d6a5ca3 100644 --- a/libexec/rexecd/rexecd.c +++ b/libexec/rexecd/rexecd.c @@ -33,7 +33,7 @@ * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved. * @(#)rexecd.c 8.1 (Berkeley) 6/4/93 * $FreeBSD: src/libexec/rexecd/rexecd.c,v 1.18.2.3 2002/05/14 22:27:21 des Exp $ - * $DragonFly: src/libexec/rexecd/rexecd.c,v 1.4 2007/05/18 17:05:12 dillon Exp $ + * $DragonFly: src/libexec/rexecd/rexecd.c,v 1.5 2007/11/25 01:28:23 swildner Exp $ */ #include @@ -50,6 +50,7 @@ #include #include #include +#include #include #include #include diff --git a/libexec/rpc.rusersd/rusers_proc.c b/libexec/rpc.rusersd/rusers_proc.c index 51f776b6b2..d744f4b6c2 100644 --- a/libexec/rpc.rusersd/rusers_proc.c +++ b/libexec/rpc.rusersd/rusers_proc.c @@ -31,13 +31,14 @@ * SUCH DAMAGE. * * $FreeBSD: src/libexec/rpc.rusersd/rusers_proc.c,v 1.10 1999/08/28 00:09:56 peter Exp $ - * $DragonFly: src/libexec/rpc.rusersd/rusers_proc.c,v 1.3 2004/02/13 03:49:48 dillon Exp $ + * $DragonFly: src/libexec/rpc.rusersd/rusers_proc.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ #ifdef DEBUG #include #endif #include +#include #include #include #include diff --git a/sbin/fsck/memzone.c b/sbin/fsck/memzone.c index c257d7466b..0f556cf70f 100644 --- a/sbin/fsck/memzone.c +++ b/sbin/fsck/memzone.c @@ -31,13 +31,14 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $DragonFly: src/sbin/fsck/memzone.c,v 1.1 2006/10/12 04:04:03 dillon Exp $ + * $DragonFly: src/sbin/fsck/memzone.c,v 1.2 2007/11/25 01:28:23 swildner Exp $ */ #include #include #include #include +#include #include #include "memzone.h" diff --git a/sbin/mountctl/mountctl.c b/sbin/mountctl/mountctl.c index e682e52f38..254431eb4a 100644 --- a/sbin/mountctl/mountctl.c +++ b/sbin/mountctl/mountctl.c @@ -31,7 +31,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $DragonFly: src/sbin/mountctl/mountctl.c,v 1.8 2005/11/06 12:42:26 swildner Exp $ + * $DragonFly: src/sbin/mountctl/mountctl.c,v 1.9 2007/11/25 01:28:23 swildner Exp $ */ /* * This utility implements the userland mountctl command which is used to @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include diff --git a/usr.bin/gprof/gprof.h b/usr.bin/gprof/gprof.h index 270545ac6b..84ee1ca401 100644 --- a/usr.bin/gprof/gprof.h +++ b/usr.bin/gprof/gprof.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)gprof.h 8.1 (Berkeley) 6/6/93 - * $DragonFly: src/usr.bin/gprof/gprof.h,v 1.3 2006/08/25 22:37:09 swildner Exp $ + * $DragonFly: src/usr.bin/gprof/gprof.h,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ #include @@ -40,6 +40,7 @@ #include #include +#include #if vax # include "vax.h" diff --git a/usr.bin/keylogin/keylogin.c b/usr.bin/keylogin/keylogin.c index 220e493bd5..1322190621 100644 --- a/usr.bin/keylogin/keylogin.c +++ b/usr.bin/keylogin/keylogin.c @@ -29,7 +29,7 @@ * * @(#)keylogin.c 1.4 91/03/11 Copyr 1986 Sun Micro * - * $DragonFly: src/usr.bin/keylogin/keylogin.c,v 1.3 2003/10/04 20:36:46 hmp Exp $ + * $DragonFly: src/usr.bin/keylogin/keylogin.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ /* @@ -40,6 +40,7 @@ * Set secret key on local machine */ #include +#include #include #include #include diff --git a/usr.bin/keylogout/keylogout.c b/usr.bin/keylogout/keylogout.c index 6e38d4e72e..e128f5e67c 100644 --- a/usr.bin/keylogout/keylogout.c +++ b/usr.bin/keylogout/keylogout.c @@ -28,7 +28,7 @@ * Mountain View, California 94043 * * $FreeBSD: src/usr.bin/keylogout/keylogout.c,v 1.3 1999/08/28 01:02:29 peter Exp $ - * $DragonFly: src/usr.bin/keylogout/keylogout.c,v 1.3 2003/10/04 20:36:46 hmp Exp $ + * $DragonFly: src/usr.bin/keylogout/keylogout.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ /* * Copyright (C) 1986, Sun Microsystems, Inc. @@ -39,6 +39,7 @@ */ #include +#include #include #include diff --git a/usr.bin/locate/bigram/locate.bigram.c b/usr.bin/locate/bigram/locate.bigram.c index 82b66b5967..1e4ef1759f 100644 --- a/usr.bin/locate/bigram/locate.bigram.c +++ b/usr.bin/locate/bigram/locate.bigram.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.bin/locate/bigram/locate.bigram.c,v 1.11 1999/08/28 01:02:54 peter Exp $ - * $DragonFly: src/usr.bin/locate/bigram/locate.bigram.c,v 1.3 2005/08/04 17:31:23 drhodus Exp $ + * $DragonFly: src/usr.bin/locate/bigram/locate.bigram.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ * * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. * @(#)locate.bigram.c 8.1 (Berkeley) 6/6/93 @@ -50,6 +50,7 @@ */ #include +#include #include /* for MAXPATHLEN */ #include "locate.h" diff --git a/usr.bin/rpcinfo/rpcinfo.c b/usr.bin/rpcinfo/rpcinfo.c index a73dd8c731..98f0c8362a 100644 --- a/usr.bin/rpcinfo/rpcinfo.c +++ b/usr.bin/rpcinfo/rpcinfo.c @@ -4,7 +4,7 @@ * @(#)rpcinfo.c 1.22 87/08/12 SMI * @(#)rpcinfo.c 2.2 88/08/11 4.0 RPCSRC * $FreeBSD: src/usr.bin/rpcinfo/rpcinfo.c,v 1.9.2.1 2001/03/04 09:00:23 kris Exp $ - * $DragonFly: src/usr.bin/rpcinfo/rpcinfo.c,v 1.2 2003/06/17 04:29:31 dillon Exp $ + * $DragonFly: src/usr.bin/rpcinfo/rpcinfo.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ /* * rpcinfo: ping a particular rpc program @@ -44,6 +44,8 @@ #include #include #include +#include +#include #include #include #include diff --git a/usr.bin/systat/ifstat.c b/usr.bin/systat/ifstat.c index 5125c9feac..89af391a0d 100644 --- a/usr.bin/systat/ifstat.c +++ b/usr.bin/systat/ifstat.c @@ -26,7 +26,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.bin/systat/ifstat.c,v 1.1 2003/01/04 22:07:24 phk Exp $ - * $DragonFly: src/usr.bin/systat/ifstat.c,v 1.2 2005/01/03 23:47:20 joerg Exp $ + * $DragonFly: src/usr.bin/systat/ifstat.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ #include @@ -40,6 +40,7 @@ #include #include +#include #include #include #include diff --git a/usr.bin/telnet/network.c b/usr.bin/telnet/network.c index 624e0ded91..94a77949d4 100644 --- a/usr.bin/telnet/network.c +++ b/usr.bin/telnet/network.c @@ -32,7 +32,7 @@ * * @(#)network.c 8.2 (Berkeley) 12/15/93 * $FreeBSD: src/usr.bin/telnet/network.c,v 1.2.14.1 2002/04/13 11:07:13 markm Exp $ - * $DragonFly: src/usr.bin/telnet/network.c,v 1.2 2003/06/17 04:29:32 dillon Exp $ + * $DragonFly: src/usr.bin/telnet/network.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ #include @@ -42,6 +42,7 @@ #include #include +#include #include #include "ring.h" diff --git a/usr.bin/telnet/terminal.c b/usr.bin/telnet/terminal.c index e041738a03..86b12db589 100644 --- a/usr.bin/telnet/terminal.c +++ b/usr.bin/telnet/terminal.c @@ -32,11 +32,12 @@ * * @(#)terminal.c 8.2 (Berkeley) 2/16/95 * $FreeBSD: src/usr.bin/telnet/terminal.c,v 1.3.6.1 2002/04/13 11:07:13 markm Exp $ - * $DragonFly: src/usr.bin/telnet/terminal.c,v 1.2 2003/06/17 04:29:32 dillon Exp $ + * $DragonFly: src/usr.bin/telnet/terminal.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ #include #include +#include #include "ring.h" diff --git a/usr.bin/telnet/utilities.c b/usr.bin/telnet/utilities.c index bd37567d72..36be9a2efe 100644 --- a/usr.bin/telnet/utilities.c +++ b/usr.bin/telnet/utilities.c @@ -32,7 +32,7 @@ * * @(#)utilities.c 8.3 (Berkeley) 5/30/95 * $FreeBSD: src/usr.bin/telnet/utilities.c,v 1.3.12.1 2002/04/13 11:07:13 markm Exp $ - * $DragonFly: src/usr.bin/telnet/utilities.c,v 1.2 2003/06/17 04:29:32 dillon Exp $ + * $DragonFly: src/usr.bin/telnet/utilities.c,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ #define TELOPTS @@ -43,6 +43,7 @@ #include #include #include +#include #include #include "general.h" diff --git a/usr.sbin/802_11/l2_packet.c b/usr.sbin/802_11/l2_packet.c index c8a3432190..b2bd9eee13 100644 --- a/usr.sbin/802_11/l2_packet.c +++ b/usr.sbin/802_11/l2_packet.c @@ -13,7 +13,7 @@ * See README and COPYING for more details. * * $FreeBSD: src/usr.sbin/wpa/l2_packet.c,v 1.4 2007/07/09 15:57:10 sam Exp $ - * $DragonFly: src/usr.sbin/802_11/l2_packet.c,v 1.4 2007/08/07 11:25:36 sephe Exp $ + * $DragonFly: src/usr.sbin/802_11/l2_packet.c,v 1.5 2007/11/25 01:28:23 swildner Exp $ */ /* @@ -35,6 +35,7 @@ #include #include #include +#include #include #include "common.h" diff --git a/usr.sbin/apmd/apmdparse.y b/usr.sbin/apmd/apmdparse.y index 3ed7199850..1ec94f8b86 100644 --- a/usr.sbin/apmd/apmdparse.y +++ b/usr.sbin/apmd/apmdparse.y @@ -28,12 +28,13 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.sbin/apmd/apmdparse.y,v 1.2.2.1 2001/08/13 17:30:30 nsayer Exp $ - * $DragonFly: src/usr.sbin/apmd/apmdparse.y,v 1.2 2003/06/17 04:29:52 dillon Exp $ + * $DragonFly: src/usr.sbin/apmd/apmdparse.y,v 1.3 2007/11/25 01:28:23 swildner Exp $ */ #include #include #include +#include #include "apmd.h" #ifdef DEBUG diff --git a/usr.sbin/atm/atmarpd/atmarp_log.c b/usr.sbin/atm/atmarpd/atmarp_log.c index 643672d9c3..eb0da10b0f 100644 --- a/usr.sbin/atm/atmarpd/atmarp_log.c +++ b/usr.sbin/atm/atmarpd/atmarp_log.c @@ -24,7 +24,7 @@ * notice must be reproduced on all copies. * * @(#) $FreeBSD: src/usr.sbin/atm/atmarpd/atmarp_log.c,v 1.3 1999/08/28 01:15:30 peter Exp $ - * @(#) $DragonFly: src/usr.sbin/atm/atmarpd/atmarp_log.c,v 1.3 2003/11/15 20:33:42 eirikn Exp $ + * @(#) $DragonFly: src/usr.sbin/atm/atmarpd/atmarp_log.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ @@ -56,6 +56,7 @@ #include #endif #include +#include #include #include "../scspd/scsp_msg.h" diff --git a/usr.sbin/atm/atmarpd/atmarpd.c b/usr.sbin/atm/atmarpd/atmarpd.c index fd92a17ef1..d758e5c26b 100644 --- a/usr.sbin/atm/atmarpd/atmarpd.c +++ b/usr.sbin/atm/atmarpd/atmarpd.c @@ -24,7 +24,7 @@ * notice must be reproduced on all copies. * * @(#) $FreeBSD: src/usr.sbin/atm/atmarpd/atmarpd.c,v 1.3.2.1 2000/12/11 01:03:29 obrien Exp $ - * @(#) $DragonFly: src/usr.sbin/atm/atmarpd/atmarpd.c,v 1.4 2004/12/18 22:48:02 swildner Exp $ + * @(#) $DragonFly: src/usr.sbin/atm/atmarpd/atmarpd.c,v 1.5 2007/11/25 01:28:23 swildner Exp $ */ /* @@ -54,6 +54,7 @@ #include #include #include +#include #include #include #include diff --git a/usr.sbin/atm/scspd/scsp_hfsm.c b/usr.sbin/atm/scspd/scsp_hfsm.c index d018b70b40..ebd17cd8ff 100644 --- a/usr.sbin/atm/scspd/scsp_hfsm.c +++ b/usr.sbin/atm/scspd/scsp_hfsm.c @@ -24,7 +24,7 @@ * notice must be reproduced on all copies. * * @(#) $FreeBSD: src/usr.sbin/atm/scspd/scsp_hfsm.c,v 1.3 1999/08/28 01:15:33 peter Exp $ - * @(#) $DragonFly: src/usr.sbin/atm/scspd/scsp_hfsm.c,v 1.4 2003/11/15 20:33:43 eirikn Exp $ + * @(#) $DragonFly: src/usr.sbin/atm/scspd/scsp_hfsm.c,v 1.5 2007/11/25 01:28:23 swildner Exp $ */ @@ -51,6 +51,7 @@ #include #include #include +#include #include #include "scsp_msg.h" diff --git a/usr.sbin/atm/scspd/scspd.c b/usr.sbin/atm/scspd/scspd.c index 74bf21c979..05bf80029c 100644 --- a/usr.sbin/atm/scspd/scspd.c +++ b/usr.sbin/atm/scspd/scspd.c @@ -24,7 +24,7 @@ * notice must be reproduced on all copies. * * @(#) $FreeBSD: src/usr.sbin/atm/scspd/scspd.c,v 1.3.2.1 2000/12/11 01:03:29 obrien Exp $ - * @(#) $DragonFly: src/usr.sbin/atm/scspd/scspd.c,v 1.3 2003/11/15 20:33:43 eirikn Exp $ + * @(#) $DragonFly: src/usr.sbin/atm/scspd/scspd.c,v 1.4 2007/11/25 01:28:23 swildner Exp $ */ @@ -55,6 +55,7 @@ #include #include #include +#include #include #include #include diff --git a/usr.sbin/bootparamd/callbootd/callbootd.c b/usr.sbin/bootparamd/callbootd/callbootd.c index a09716d6b0..0d1788500d 100644 --- a/usr.sbin/bootparamd/callbootd/callbootd.c +++ b/usr.sbin/bootparamd/callbootd/callbootd.c @@ -9,7 +9,7 @@ use and modify. Please send modifications and/or suggestions + bug fixes to /* * $FreeBSD: src/usr.sbin/bootparamd/callbootd/callbootd.c,v 1.8 1999/08/28 01:15:40 peter Exp $ - * $DragonFly: src/usr.sbin/bootparamd/callbootd/callbootd.c,v 1.4 2003/11/15 23:33:35 eirikn Exp $ + * $DragonFly: src/usr.sbin/bootparamd/callbootd/callbootd.c,v 1.5 2007/11/25 01:28:24 swildner Exp $ */ #include "bootparam_prot.h" #include @@ -23,6 +23,7 @@ use and modify. Please send modifications and/or suggestions + bug fixes to /* #define bp_address_u bp_address */ #include +#include #include int broadcast; diff --git a/usr.sbin/i4b/g711conv/g711conv.c b/usr.sbin/i4b/g711conv/g711conv.c index 620e543eb4..eed46f1e17 100644 --- a/usr.sbin/i4b/g711conv/g711conv.c +++ b/usr.sbin/i4b/g711conv/g711conv.c @@ -70,11 +70,12 @@ * $Id: g711conv.c,v 1.5 1999/12/13 21:25:24 hm Exp $ * * $FreeBSD: src/usr.sbin/i4b/g711conv/g711conv.c,v 1.4.2.1 2001/08/01 17:45:02 obrien Exp $ - * $DragonFly: src/usr.sbin/i4b/g711conv/g711conv.c,v 1.5 2005/11/25 00:58:52 swildner Exp $ + * $DragonFly: src/usr.sbin/i4b/g711conv/g711conv.c,v 1.6 2007/11/25 01:28:24 swildner Exp $ * *---------------------------------------------------------------------------*/ #include +#include #include #include diff --git a/usr.sbin/mrouted/testrsrr/testrsrr.c b/usr.sbin/mrouted/testrsrr/testrsrr.c index d8b9823233..483385cef9 100644 --- a/usr.sbin/mrouted/testrsrr/testrsrr.c +++ b/usr.sbin/mrouted/testrsrr/testrsrr.c @@ -27,11 +27,12 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.sbin/mrouted/testrsrr/testrsrr.c,v 1.4 1999/08/28 01:17:17 peter Exp $ - * $DragonFly: src/usr.sbin/mrouted/testrsrr/testrsrr.c,v 1.4 2005/12/05 00:58:50 swildner Exp $ + * $DragonFly: src/usr.sbin/mrouted/testrsrr/testrsrr.c,v 1.5 2007/11/25 01:28:24 swildner Exp $ */ #include #include #include +#include #include #include diff --git a/usr.sbin/portmap/pmap_check.c b/usr.sbin/portmap/pmap_check.c index 170864c367..19323b9479 100644 --- a/usr.sbin/portmap/pmap_check.c +++ b/usr.sbin/portmap/pmap_check.c @@ -34,7 +34,7 @@ /* * @(#) pmap_check.c 1.6 93/11/21 20:58:59 * $FreeBSD: src/usr.sbin/portmap/pmap_check.c,v 1.6 2000/01/15 23:08:28 brian Exp $ - * $DragonFly: src/usr.sbin/portmap/pmap_check.c,v 1.4 2004/03/30 02:58:59 cpressey Exp $ + * $DragonFly: src/usr.sbin/portmap/pmap_check.c,v 1.5 2007/11/25 01:28:24 swildner Exp $ */ #include @@ -47,6 +47,7 @@ #include #include +#include #include #include diff --git a/usr.sbin/pppd/ipcp.c b/usr.sbin/pppd/ipcp.c index d798665e21..ba111a8e9d 100644 --- a/usr.sbin/pppd/ipcp.c +++ b/usr.sbin/pppd/ipcp.c @@ -17,7 +17,7 @@ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * $FreeBSD: src/usr.sbin/pppd/ipcp.c,v 1.12 1999/08/28 01:19:03 peter Exp $ - * $DragonFly: src/usr.sbin/pppd/ipcp.c,v 1.4 2005/11/24 23:42:54 swildner Exp $ + * $DragonFly: src/usr.sbin/pppd/ipcp.c,v 1.5 2007/11/25 01:28:24 swildner Exp $ */ /* @@ -25,6 +25,7 @@ */ #include +#include #include #include #include diff --git a/usr.sbin/rpc.statd/file.c b/usr.sbin/rpc.statd/file.c index 9d9fccc16f..fb850910ca 100644 --- a/usr.sbin/rpc.statd/file.c +++ b/usr.sbin/rpc.statd/file.c @@ -29,13 +29,14 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $DragonFly: src/usr.sbin/rpc.statd/file.c,v 1.2 2005/11/25 00:32:49 swildner Exp $ + * $DragonFly: src/usr.sbin/rpc.statd/file.c,v 1.3 2007/11/25 01:28:24 swildner Exp $ */ #include #include #include #include +#include #include #include #include diff --git a/usr.sbin/rpc.ypupdated/yp_dbupdate.c b/usr.sbin/rpc.ypupdated/yp_dbupdate.c index 7f75e4912c..015e33742d 100644 --- a/usr.sbin/rpc.ypupdated/yp_dbupdate.c +++ b/usr.sbin/rpc.ypupdated/yp_dbupdate.c @@ -30,12 +30,13 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.sbin/rpc.ypupdated/yp_dbupdate.c,v 1.3.2.1 2002/02/15 00:46:57 des Exp $ - * $DragonFly: src/usr.sbin/rpc.ypupdated/yp_dbupdate.c,v 1.4 2005/11/25 00:32:49 swildner Exp $ + * $DragonFly: src/usr.sbin/rpc.ypupdated/yp_dbupdate.c,v 1.5 2007/11/25 01:28:24 swildner Exp $ */ #include #include +#include #include #include #include diff --git a/usr.sbin/stallion/stlstty/stlstty.c b/usr.sbin/stallion/stlstty/stlstty.c index b3a447913d..9eb9335bf9 100644 --- a/usr.sbin/stallion/stlstty/stlstty.c +++ b/usr.sbin/stallion/stlstty/stlstty.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.sbin/stallion/stlstty/stlstty.c,v 1.1.2.1 2001/08/30 12:29:56 murray Exp $ - * $DragonFly: src/usr.sbin/stallion/stlstty/stlstty.c,v 1.3 2005/12/05 02:40:28 swildner Exp $ + * $DragonFly: src/usr.sbin/stallion/stlstty/stlstty.c,v 1.4 2007/11/25 01:28:24 swildner Exp $ */ /*****************************************************************************/ @@ -42,6 +42,7 @@ #include #include #include +#include #include #include diff --git a/usr.sbin/ypset/ypset.c b/usr.sbin/ypset/ypset.c index b76bdd479d..9f5ea3eb4c 100644 --- a/usr.sbin/ypset/ypset.c +++ b/usr.sbin/ypset/ypset.c @@ -27,12 +27,13 @@ * SUCH DAMAGE. * * $FreeBSD: src/usr.sbin/ypset/ypset.c,v 1.5.2.2 2002/02/15 00:47:00 des Exp $ - * $DragonFly: src/usr.sbin/ypset/ypset.c,v 1.3 2005/11/24 22:23:03 swildner Exp $ + * $DragonFly: src/usr.sbin/ypset/ypset.c,v 1.4 2007/11/25 01:28:24 swildner Exp $ */ #include #include #include +#include #include #include #include -- 2.41.0