meta: replace systemd and ldd with herdd and nsd

This commit is contained in:
2026-03-23 18:15:38 +00:00
parent d4d3ab13f4
commit bf5052fd3d
12 changed files with 105 additions and 34 deletions

14
services/herdd/runlevel.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef RUNLEVEL_H_
#define RUNLEVEL_H_
#include <stddef.h>
#define RUNLEVEL_DESCRIPTION_MAX 64
struct runlevel {
char rl_description[RUNLEVEL_DESCRIPTION_MAX];
char **rl_requires;
size_t rl_requires_count;
};
#endif