04e454d3c6
Adapted to use the NOFLOAT cpp flag.
15 lines
135 B
C
15 lines
135 B
C
#include <signal.h>
|
|
|
|
char rcs_id[] = "$Header$" ;
|
|
|
|
foo()
|
|
{
|
|
printf("signal received\n");
|
|
}
|
|
|
|
main()
|
|
{
|
|
signal(SIGINT,foo);
|
|
while(1);
|
|
}
|