From 1bc1d06d9785099a2434d679a280ed330244c3fc Mon Sep 17 00:00:00 2001 From: Costin Lupu Date: Thu, 22 Aug 2019 13:10:42 +0300 Subject: [PATCH] musl-imported: Add bits/alltypes.h Most of the musl headers need a 'bits/alltypes.h' header. In order to avoid changing this include directive, we use a trick: we add our own 'bits/alltypes.h' header which simply includes 'sys/types', where our types are defined. Signed-off-by: Costin Lupu Reviewed-by: Charalampos Mainas --- musl-imported/arch/generic/bits/alltypes.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 musl-imported/arch/generic/bits/alltypes.h diff --git a/musl-imported/arch/generic/bits/alltypes.h b/musl-imported/arch/generic/bits/alltypes.h new file mode 100644 index 0000000..a12c43b --- /dev/null +++ b/musl-imported/arch/generic/bits/alltypes.h @@ -0,0 +1 @@ +#include -- 2.39.5