summaryrefslogtreecommitdiff
path: root/src/core/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/target.h')
-rw-r--r--src/core/target.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core/target.h b/src/core/target.h
index 0a25ef469a..339aea154e 100644
--- a/src/core/target.h
+++ b/src/core/target.h
@@ -1,5 +1,3 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
#pragma once
/***
@@ -23,14 +21,6 @@
typedef struct Target Target;
-
-typedef enum TargetState {
- TARGET_DEAD,
- TARGET_ACTIVE,
- _TARGET_STATE_MAX,
- _TARGET_STATE_INVALID = -1
-} TargetState;
-
struct Target {
Unit meta;
@@ -38,6 +28,3 @@ struct Target {
};
extern const UnitVTable target_vtable;
-
-const char* target_state_to_string(TargetState i) _const_;
-TargetState target_state_from_string(const char *s) _pure_;