sd-hwdb: adjust included headers
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 18 Sep 2018 04:37:51 +0000 (13:37 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 19 Sep 2018 07:52:59 +0000 (16:52 +0900)
src/libsystemd/sd-hwdb/hwdb-internal.h
src/libsystemd/sd-hwdb/hwdb-util.h
src/libsystemd/sd-hwdb/sd-hwdb.c

index d186c85..d82b8c1 100644 (file)
@@ -1,8 +1,9 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 #pragma once
 
+#include <stdint.h>
+
 #include "sparse-endian.h"
-#include "util.h"
 
 #define HWDB_SIG { 'K', 'S', 'L', 'P', 'H', 'H', 'R', 'H' }
 
index 43ddccd..340a681 100644 (file)
@@ -1,8 +1,8 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 #pragma once
 
-#include "sd-hwdb.h"
+#include <stdbool.h>
 
-#include "util.h"
+#include "sd-hwdb.h"
 
 bool hwdb_validate(sd_hwdb *hwdb);
index 371dac5..2bbbbd0 100644 (file)
@@ -20,6 +20,7 @@
 #include "hwdb-util.h"
 #include "refcnt.h"
 #include "string-util.h"
+#include "util.h"
 
 struct sd_hwdb {
         RefCount n_ref;