diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-06-05 15:17:41 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-06-05 15:17:41 +0000 |
commit | 93772e9d9f3423cff8385dd358f4e36d8bb9dff4 (patch) | |
tree | b727a416d94a51061decc29e284637b67083b50b | |
parent | 91703210644788cedfac025abf5b38eb4d1cdaac (diff) |
Include sys/timeout.h to make if_gre.c compile without pf.
No binary change. OK henning@
-rw-r--r-- | sys/net/if_gre.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_gre.c b/sys/net/if_gre.c index 909d063f8a2..d7134397ba1 100644 --- a/sys/net/if_gre.c +++ b/sys/net/if_gre.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gre.c,v 1.61 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: if_gre.c,v 1.62 2013/06/05 15:17:40 bluhm Exp $ */ /* $NetBSD: if_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */ /* @@ -50,6 +50,7 @@ #include <sys/sockio.h> #include <sys/kernel.h> #include <sys/systm.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/if_types.h> |