]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - src/core/target.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / core / target.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: LGPL-2.1+ */
2#pragma once
3
4#include "unit.h"
5
6typedef struct Target Target;
7
8struct Target {
9 Unit meta;
10
11 TargetState state, deserialized_state;
12};
13
14extern const UnitVTable target_vtable;
15
16DEFINE_CAST(TARGET, Target);