15 lines
254 B
C
15 lines
254 B
C
|
/* $Source$
|
||
|
* $State$
|
||
|
* $Revision$
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
#include <signal.h>
|
||
|
#include "libsys.h"
|
||
|
|
||
|
sighandler_t signal(int signum, sighandler_t handler)
|
||
|
{
|
||
|
return (sighandler_t) _syscall(__NR_signal, signum, (quad) handler, 0);
|
||
|
}
|