From: Vlad-Andrei BĂDOIU (78692) Date: Tue, 17 Dec 2019 17:05:03 +0000 (+0000) Subject: Include stdint.h in sys/_types.h X-Git-Tag: RELEASE-0.4~8 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=cfa0c4b1d502fe8b3fe24a088e710b43265cea5b;p=unikraft%2Flibs%2Fnewlib.git Include stdint.h in sys/_types.h stdatomic.h no longer builds because it's missing the definitions of stdint.h that should come with sys/types.h . Signed-off-by: Vlad-Andrei Badoiu Reviewed-by: Felipe Huici --- diff --git a/include/sys/_types.h b/include/sys/_types.h index 972a7de..4b99561 100644 --- a/include/sys/_types.h +++ b/include/sys/_types.h @@ -37,6 +37,7 @@ /* Use Unikraft type definitions */ #include +#include /* Provide _CLOCK_T_ */ #define _CLOCK_T_ long /* clock() */