Skip to content
Published at:
c
#define DAEMON                   \
    do {                         \
        if (fork() > 0) exit(0); \
        setsid();                \
        chdir("/");              \
    } while (0)