summaryrefslogtreecommitdiff
path: root/src/basic/macro.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-03-14 17:44:49 -0400
committerSven Eden <yamakuzure@gmx.net>2017-06-16 10:12:57 +0200
commit4a1368fc8c31e78025ccb7b2fa42c3426d3f428d (patch)
tree745465ecd9d7875cb2356be9f64df6cc798b0055 /src/basic/macro.h
parentf4c228f18281f3a7b305940329ca9b7a51fc430d (diff)
include sys/sysmacros.h in more places
Since glibc is moving away from implicitly including sys/sysmacros.h all the time via sys/types.h, include the header directly in more places. This seems to cover most makedev/major/minor usage.
Diffstat (limited to 'src/basic/macro.h')
-rw-r--r--src/basic/macro.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/macro.h b/src/basic/macro.h
index c34441d75..b36a95675 100644
--- a/src/basic/macro.h
+++ b/src/basic/macro.h
@@ -23,6 +23,7 @@
#include <inttypes.h>
#include <stdbool.h>
#include <sys/param.h>
+#include <sys/sysmacros.h>
#include <sys/types.h>
#define _printf_(a,b) __attribute__ ((format (printf, a, b)))