diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-03-15 23:51:09 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-03-17 12:40:34 +0100 |
commit | 58f5f60f1a9f315de7103b69cbb1a1b318ea0e75 (patch) | |
tree | 43463cf930c5dd864748a63b928ae30dd373f798 /src/basic/os-util.h | |
parent | Merge pull request #26849 from DaanDeMeyer/fwd-colors (diff) | |
download | systemd-58f5f60f1a9f315de7103b69cbb1a1b318ea0e75.tar.xz systemd-58f5f60f1a9f315de7103b69cbb1a1b318ea0e75.zip |
os-util: add missing headers
For 'bool' and 'usec_t'.
Diffstat (limited to 'src/basic/os-util.h')
-rw-r--r-- | src/basic/os-util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/basic/os-util.h b/src/basic/os-util.h index a6b121ec43..3bafeaeb92 100644 --- a/src/basic/os-util.h +++ b/src/basic/os-util.h @@ -1,8 +1,11 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once +#include <stdbool.h> #include <stdio.h> +#include "time-util.h" + /* The *_extension_release flavours will look for /usr/lib/extension-release/extension-release.NAME * in accordance with the OS extension specification, rather than for /usr/lib/ or /etc/os-release. */ |