2019-12-20 21:22:42 +01:00
|
|
|
https://bugs.gentoo.org/580924
|
|
|
|
|
|
|
|
Linux C libs are moving away from implicit header pollution with sys/types.h
|
|
|
|
|
|
|
|
--- a/include/qemu/osdep.h
|
|
|
|
+++ b/include/qemu/osdep.h
|
2020-04-19 02:54:36 +02:00
|
|
|
@@ -118,6 +118,10 @@ extern int daemon(int, int);
|
|
|
|
#include <setjmp.h>
|
2019-12-20 21:22:42 +01:00
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
+#ifdef __linux__
|
|
|
|
+#include <sys/sysmacros.h>
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#ifdef __OpenBSD__
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#endif
|