1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

sys/net/gnrc/netif: use IS_USED macro

This commit is contained in:
Marian Buschsieweke 2020-09-22 10:22:48 +02:00
parent acf14f8a2b
commit 1d1b446d6b
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -23,14 +23,14 @@
#include "net/ethernet.h"
#include "net/ipv6.h"
#include "net/gnrc.h"
#ifdef MODULE_GNRC_IPV6_NIB
#if IS_USED(MODULE_GNRC_IPV6_NIB)
#include "net/gnrc/ipv6/nib.h"
#include "net/gnrc/ipv6.h"
#endif /* MODULE_GNRC_IPV6_NIB */
#endif /* IS_USED(MODULE_GNRC_IPV6_NIB) */
#include "net/gnrc/netif/pktq.h"
#ifdef MODULE_NETSTATS
#if IS_USED(MODULE_NETSTATS)
#include "net/netstats.h"
#endif
#endif /* IS_USED(MODULE_NETSTATS) */
#include "fmt.h"
#include "log.h"
#include "sched.h"