1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fix building sys/modules/if_enc by adding missing headers

X-MFC with: r291292, r291299 (if that ever happens)
Pointyhat to: ae
This commit is contained in:
Enji Cooper 2015-11-25 21:16:10 +00:00
parent b16fc49e73
commit 766b4e4b5c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291335

View File

@ -33,6 +33,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/hhook.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -44,6 +45,7 @@
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_enc.h>
#include <net/if_var.h>
#include <net/if_clone.h>
#include <net/if_types.h>