mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-20 09:44:22 +00:00
21 lines
186 B
C
Executable File
21 lines
186 B
C
Executable File
#include <unistd.h>
|
|
#include <signal.h>
|
|
|
|
static void
|
|
nop(int sig)
|
|
{
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
signal(SIGTERM, nop);
|
|
signal(SIGINT, nop);
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
pause();
|
|
|
|
return 0;
|
|
}
|
|
|