net/if_bridgevar.h: add include guard

Reviewed by:	kp
Approved by:	des (mentor)

(cherry picked from commit f6aedb956ef154828c4bfaddaa5d5eb2dda5225c)
This commit is contained in:
Lexi Winter 2025-04-04 11:59:09 +01:00 committed by Franco Fichtner
parent dd9c2758f2
commit 264cc9df0b

View file

@ -74,6 +74,9 @@
* Data structure and control definitions for bridge interfaces.
*/
#ifndef _NET_IF_BRIDGEVAR_H_
#define _NET_IF_BRIDGEVAR_H_
#include <sys/types.h>
#include <sys/callout.h>
#include <sys/queue.h>
@ -323,3 +326,5 @@ extern void (*bridge_dn_p)(struct mbuf *, struct ifnet *);
extern bool (*bridge_member_ifaddrs_p)(void);
#endif /* _KERNEL */
#endif /* _NET_IF_BRIDGEVAR_H_ */