summaryrefslogtreecommitdiff
blob: f2e766dc1c3557670b9d7549560740e3c5bedd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Linux C libs are moving away from implicit header pollution with sys/types.h

--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -78,6 +78,10 @@ extern int daemon(int, int);
 #include <assert.h>
 #include <signal.h>
 
+#ifdef __linux__
+#include <sys/sysmacros.h>
+#endif
+
 #ifdef __OpenBSD__
 #include <sys/signal.h>
 #endif