mirror of https://github.com/n1nj4sec/pupy.git
10 lines
144 B
C
10 lines
144 B
C
|
#ifndef DAEMONIZE_H
|
||
|
#define DAEMONIZE_H
|
||
|
|
||
|
#include <unistd.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
pid_t daemonize(bool exit_parent);
|
||
|
|
||
|
#endif /* DAEMONIZE_H */
|