Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / ctest / ctsys / signal.c
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 #include <signal.h>
6
7 char rcs_id[] = "$Id: signal.c,v 2.3 1994/06/24 12:10:18 ceriel Exp $" ;
8
9 foo()
10 {
11         printf("signal received\n");
12 }
13
14 main()
15 {
16         signal(SIGINT,foo);
17         while(1);
18 }