1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:29:45 +01:00

pkg/openwsn: fix compilation with clang

This commit is contained in:
Marian Buschsieweke 2023-05-20 21:33:17 +02:00 committed by Marian Buschsieweke
parent 855380ee3a
commit 77529737b5
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94
4 changed files with 3 additions and 3 deletions

View File

@ -75,6 +75,3 @@ endif
ifndef CONFIG_KCONFIG_USEMODULE_IEEE802154
CFLAGS += -DCONFIG_IEEE802154_AUTO_ACK_DISABLE
endif
# LLVM ARM shows issues with missing definitions for stdatomic
TOOLCHAINS_BLACKLIST += llvm

View File

@ -16,6 +16,7 @@
* @author Francisco Molina <francois-xavier.molina@inria.fr>
* @}
*/
#include <stdint.h>
#include <stdatomic.h>
#include <sys/uio.h>

View File

@ -23,6 +23,7 @@
*
* @}
*/
#include <stdint.h>
#include <stdatomic.h>
#include "sctimer.h"

View File

@ -20,6 +20,7 @@
* @}
*/
#include <stdint.h>
#include <stdatomic.h>
#include "board.h"