mirror of
https://github.com/pygos/init.git
synced 2024-11-05 04:07:10 +01:00
c14c3c0173
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
21 lines
354 B
C
21 lines
354 B
C
/* SPDX-License-Identifier: ISC */
|
|
#ifndef RUNSVC_H
|
|
#define RUNSVC_H
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
|
|
#include "service.h"
|
|
#include "libcfg.h"
|
|
#include "util.h"
|
|
|
|
#define ENVFILE ETCPATH "/initd.env"
|
|
|
|
int initenv(void);
|
|
|
|
#endif /* RUNSVC_H */
|