diff options
author | June McEnroe <june@causal.agency> | 2020-08-17 22:47:19 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-17 22:49:29 -0400 |
commit | 2a7467647ec85fdb5f57565284bc73456b45979c (patch) | |
tree | cbe35267b38ececf00850ac4c946fef888041c76 /daemon.h | |
parent | Log service uptime in status (diff) | |
download | catsit-2a7467647ec85fdb5f57565284bc73456b45979c.tar.gz catsit-2a7467647ec85fdb5f57565284bc73456b45979c.zip |
Clean up includes
Diffstat (limited to '')
-rw-r--r-- | daemon.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/daemon.h b/daemon.h index b397f8e..e86e43a 100644 --- a/daemon.h +++ b/daemon.h @@ -15,8 +15,6 @@ */ #include <errno.h> -#include <grp.h> -#include <pwd.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> @@ -139,9 +137,6 @@ void serviceSignal(struct Service *service, int signal); void serviceRead(struct Service *service); void serviceReap(pid_t pid, int status); -extern char configError[]; -int configParse(const char *path); - struct Set256 { uint32_t bits[8]; }; |