#include #include #include #include int main(void) { #ifdef SANE if (kill(1, SIGINT) == -1) { perror("kill"); return errno; } #else kill(1, SIGINT); #endif return 0; }