summaryrefslogtreecommitdiff
blob: 94b6a2c8bb3fd7daccd3f1d51cec5d156f3dcfaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
@@ -118,6 +118,10 @@ extern int daemon(int, int);
 #include <setjmp.h>
 #include <signal.h>
 
+#ifdef __linux__
+#include <sys/sysmacros.h>
+#endif
+
 #ifdef __OpenBSD__
 #include <sys/signal.h>
 #endif