aboutsummaryrefslogtreecommitdiff
path: root/sbin/routed
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1996-12-10 17:11:53 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1996-12-10 17:11:53 +0000
commit628d2ac1b093f48f6fb98b17308acacc929876d8 (patch)
tree1bb2cd09b3e27a462e04923aa2922608ee5ea899 /sbin/routed
parentfc43f97826e798ad4e3534b59f3b8d3aac1c4abe (diff)
downloadsrc-628d2ac1b093f48f6fb98b17308acacc929876d8.tar.gz
src-628d2ac1b093f48f6fb98b17308acacc929876d8.zip
Fix up programs which expect <net/if.h> to include <sys/time.h> to instead
do it themselves. (Some of these programs actually depended on this beyond compiling the definition of struct ifinfo!) Also fix up some other #include messes while we're at it.
Notes
Notes: svn path=/head/; revision=20287
Diffstat (limited to 'sbin/routed')
-rw-r--r--sbin/routed/defs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/routed/defs.h b/sbin/routed/defs.h
index 5dd0b8bd01ec..d87029d14560 100644
--- a/sbin/routed/defs.h
+++ b/sbin/routed/defs.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)defs.h 8.1 (Berkeley) 6/5/93
- * $Id: defs.h,v 1.2 1996/09/16 17:03:29 wollman Exp $
+ * $Id: defs.h,v 1.3 1996/11/19 20:42:11 wollman Exp $
*/
/* Definitions for RIPv2 routing process.
@@ -77,6 +77,7 @@
#include <sys/ioctl.h>
#include <sys/sysctl.h>
#include <sys/socket.h>
+#include <sys/time.h>
#ifdef sgi
#include <net/radix.h>
#else