Skip to content

Commit fd67de0

Browse files
committed
tree-wide: fix a few missing includes
1 parent b0325c9 commit fd67de0

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/import/import-common.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/* SPDX-License-Identifier: LGPL-2.1+ */
22
#pragma once
33

4+
#include <sys/types.h>
5+
46
int import_make_read_only_fd(int fd);
57
int import_make_read_only(const char *path);
68

src/shared/machine-image.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#include <stdbool.h>
55
#include <stdint.h>
66

7+
#include "sd-id128.h"
8+
79
#include "hashmap.h"
810
#include "lockfile-util.h"
911
#include "macro.h"

src/shared/verbs.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/* SPDX-License-Identifier: LGPL-2.1+ */
22
#pragma once
33

4+
#include <stdbool.h>
5+
46
#define VERB_ANY ((unsigned) -1)
57

68
typedef enum VerbFlags {

0 commit comments

Comments
 (0)