/*-------------------------------------------------------------------*/ /* testsignalignore.c */ /* Ignoring signals. */ /*-------------------------------------------------------------------*/ #include int main(int argc, char *argv[]) { signal(SIGINT, SIG_IGN); while (1) ; return 0; } /* Sample execution: $ testsignalignore ^C^C^C */ /* Note: Can use kill command to stop process. */