mirror of
https://github.com/morgan9e/systemd
synced 2026-04-16 01:16:10 +09:00
- Make sure forward headers have the iwyu pragma to always keep them - Make sure we always include the daemon specific forward header instead of shared-forward.h - Remove shared-forward.h include where the daemon specific forward header is already included
13 lines
344 B
C
13 lines
344 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
/* IWYU pragma: always_keep */
|
|
|
|
#include "shared-forward.h" /* IWYU pragma: export */
|
|
|
|
typedef struct Context Context;
|
|
typedef struct PartitionInfo PartitionInfo;
|
|
typedef struct Resource Resource;
|
|
typedef struct Instance Instance;
|
|
typedef struct InstanceMetadata InstanceMetadata;
|