]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/target.h
grypt-util: drop two emacs modelines
[thirdparty/systemd.git] / src / core / target.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "unit.h"
5
6 /***
7 Copyright 2010 Lennart Poettering
8 ***/
9
10 typedef struct Target Target;
11
12 struct Target {
13 Unit meta;
14
15 TargetState state, deserialized_state;
16 };
17
18 extern const UnitVTable target_vtable;
19
20 DEFINE_CAST(TARGET, Target);