Hello Costin,
this patch looks good.
Thank you.
Reviewed-by: Charalampos Mainas <charalampos.mainas@xxxxxxxxx>
From: Costin Lupu <costin.lupu@xxxxxxxxx>
Sent: Thursday, August 22, 2019 12:10 PM
To: minios-devel@xxxxxxxxxxxxx
Cc: Felipe Huici; Charalampos Mainas
Subject: [UNIKRAFT/NEWLIB PATCH 02/16] 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 <costin.lupu@xxxxxxxxx>
---
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 <sys/types.h>
--
2.20.1
|