From ec7bf7a854e65c723b676217528669f88c63d143 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Fri, 3 Aug 2018 18:34:53 +0200 Subject: [PATCH] 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. --- core/include/rmutex.h | 1 + 1 file changed, 1 insertion(+) diff --git a/core/include/rmutex.h b/core/include/rmutex.h index 6bf99efd7e..ef8c0692c6 100644 --- a/core/include/rmutex.h +++ b/core/include/rmutex.h @@ -21,6 +21,7 @@ #ifndef RMUTEX_H #define RMUTEX_H +#include #include #include "mutex.h"