From 4147042bc101f79f4e6f574435e8ba1d3bca0dc9 Mon Sep 17 00:00:00 2001 From: Karl Fessel Date: Fri, 25 Feb 2022 18:32:47 +0100 Subject: [PATCH] sys/shell: add missing includes --- sys/shell/commands/sc_cord_ep.c | 1 + sys/shell/commands/sc_sntp.c | 1 + 2 files changed, 2 insertions(+) diff --git a/sys/shell/commands/sc_cord_ep.c b/sys/shell/commands/sc_cord_ep.c index 0e32adce28..311bde110b 100644 --- a/sys/shell/commands/sc_cord_ep.c +++ b/sys/shell/commands/sc_cord_ep.c @@ -22,6 +22,7 @@ #include #include "net/cord/ep.h" +#include "net/gnrc/netif.h" #include "net/nanocoap.h" #include "net/sock/util.h" #include "net/cord/config.h" diff --git a/sys/shell/commands/sc_sntp.c b/sys/shell/commands/sc_sntp.c index 1cd3886cc6..80463bc921 100644 --- a/sys/shell/commands/sc_sntp.c +++ b/sys/shell/commands/sc_sntp.c @@ -24,6 +24,7 @@ #include "net/sntp.h" #include "net/ntp_packet.h" #include "net/af.h" +#include "net/gnrc/netif.h" #include "net/ipv6/addr.h" #include "timex.h"