Systemd/src/core/target.h

17 lines
269 B
C

/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include "unit.h"
typedef struct Target Target;
struct Target {
Unit meta;
TargetState state, deserialized_state;
};
extern const UnitVTable target_vtable;
DEFINE_CAST(TARGET, Target);