diff options
author | 2000-01-08 05:49:40 +0000 | |
---|---|---|
committer | 2000-01-08 05:49:40 +0000 | |
commit | 3c4c637fbf565f950ae5777771d0014c1ef10d44 (patch) | |
tree | 469fa4a940826724d931e17743933c6b9e9f227f | |
parent | Forgot to commit this (GRE ioctls) (diff) | |
download | wireguard-openbsd-3c4c637fbf565f950ae5777771d0014c1ef10d44.tar.xz wireguard-openbsd-3c4c637fbf565f950ae5777771d0014c1ef10d44.zip |
Missing rndvar.h
-rw-r--r-- | sys/netinet6/mld6.c | 3 | ||||
-rw-r--r-- | sys/netinet6/nd6.c | 3 | ||||
-rw-r--r-- | sys/netinet6/nd6_rtr.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sys/netinet6/mld6.c b/sys/netinet6/mld6.c index cbeb979eaa9..905f999c7c6 100644 --- a/sys/netinet6/mld6.c +++ b/sys/netinet6/mld6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mld6.c,v 1.3 1999/12/15 07:08:00 itojun Exp $ */ +/* $OpenBSD: mld6.c,v 1.4 2000/01/08 05:49:40 angelos Exp $ */ /* * Copyright (C) 1998 WIDE Project. @@ -74,6 +74,7 @@ #include <sys/socket.h> #include <sys/protosw.h> #include <sys/syslog.h> +#include <dev/rndvar.h> #include <net/if.h> diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c index 2797b71deb9..9e11a477cd1 100644 --- a/sys/netinet6/nd6.c +++ b/sys/netinet6/nd6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nd6.c,v 1.3 1999/12/10 17:53:15 itojun Exp $ */ +/* $OpenBSD: nd6.c,v 1.4 2000/01/08 05:49:41 angelos Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -49,6 +49,7 @@ #include <sys/ioctl.h> #include <sys/syslog.h> #include <sys/queue.h> +#include <dev/rndvar.h> #include <net/if.h> #include <net/if_dl.h> diff --git a/sys/netinet6/nd6_rtr.c b/sys/netinet6/nd6_rtr.c index 3264eb16e84..1534e62a748 100644 --- a/sys/netinet6/nd6_rtr.c +++ b/sys/netinet6/nd6_rtr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nd6_rtr.c,v 1.2 1999/12/10 10:04:28 angelos Exp $ */ +/* $OpenBSD: nd6_rtr.c,v 1.3 2000/01/08 05:49:41 angelos Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -40,6 +40,7 @@ #include <sys/errno.h> #include <sys/ioctl.h> #include <sys/syslog.h> +#include <dev/rndvar.h> #include <net/if.h> #include <net/if_types.h> |