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

core: rmutex: include stdint.h

For some reason the LLVM/clang version of `stdatomic.h` does not include
`stdint.h`, though it uses types from it.
This commit is contained in:
Martine Lenders 2018-08-03 18:34:53 +02:00
parent 2f480efb60
commit ec7bf7a854

View File

@ -21,6 +21,7 @@
#ifndef RMUTEX_H
#define RMUTEX_H
#include <stdint.h>
#include <stdatomic.h>
#include "mutex.h"