15 lines
197 B
C
15 lines
197 B
C
|
/* $Source$
|
||
|
* $State$
|
||
|
* $Revision$
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <errno.h>
|
||
|
#include <unistd.h>
|
||
|
#include <signal.h>
|
||
|
|
||
|
sighandler_t signal(int signum, sighandler_t handler)
|
||
|
{
|
||
|
return SIG_DFL;
|
||
|
}
|