From 0d0ec117535df0433f69528066953463bd2c6a54 Mon Sep 17 00:00:00 2001 From: jenswet Date: Mon, 23 Nov 2020 11:13:58 +0100 Subject: [PATCH] sys/net/lorawan: fix cpp namespace --- sys/include/net/lorawan/hdr.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/include/net/lorawan/hdr.h b/sys/include/net/lorawan/hdr.h index 716eea7ebe..877eafac5d 100644 --- a/sys/include/net/lorawan/hdr.h +++ b/sys/include/net/lorawan/hdr.h @@ -278,5 +278,9 @@ static inline uint8_t lorawan_hdr_get_frame_opts_len(lorawan_hdr_t *hdr) return (hdr->fctrl & LORAWAN_HDR_FOPTS_LEN_MASK) >> LORAWAN_HDR_FOPTS_LEN_POS; } +#ifdef __cplusplus +} +#endif + #endif /* NET_LORAWAN_HDR_H */ /** @} */