8ed5727642
strace.c: suppress "warning: unused static" message by adding #ifdef's around a variable .gitignore: trivial test/*.c: cleanup (suppress warnings, much better style).
19 lines
230 B
C
19 lines
230 B
C
#include <stdlib.h>
|
|
#include <signal.h>
|
|
|
|
void interrupt()
|
|
{
|
|
write(2, "xyzzy\n", 6);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
char buf[1024];
|
|
|
|
signal(SIGINT, interrupt);
|
|
read(0, buf, 1024);
|
|
write(2, "qwerty\n", 7);
|
|
|
|
return 0;
|
|
}
|