1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/rmutex: Made C++ compatible

This commit is contained in:
Marian Buschsieweke 2019-10-22 23:36:53 +02:00
parent 314184adb5
commit e0cec17ec8
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -24,7 +24,11 @@
#define RMUTEX_H
#include <stdint.h>
#ifdef __cplusplus
#include "c11_atomics_compat.hpp"
#else
#include <stdatomic.h>
#endif
#include "mutex.h"
#include "kernel_types.h"