shithub: scc

ref: ed1a8159a3f06e7c4da43567e8dee276d392f3bd
dir: /include/signal.h/

View raw version
#ifndef _SIGNAL_H
#define _SIGNAL_H

#include <sys/signal.h>

void (*signal(int, void (*handler)(int)))(int);
int raise(int);

#endif