go-daemon/c-daemon/daemon/test.c

12 lines
155 B
C
Raw Normal View History

2023-07-26 10:28:17 +03:00
#include <stdio.h>
int _daemon (int, int);
int main(){
2023-07-26 13:52:50 +03:00
printf("START");
2023-07-26 10:28:17 +03:00
_daemon(0, 0);
2023-07-26 13:52:50 +03:00
printf("END");
2023-07-26 10:28:17 +03:00
getchar();
2023-07-26 13:52:50 +03:00
printf("CLOSE");
2023-07-26 10:28:17 +03:00
return 0;
}