shithub: scc

ref: 8336b733717f4fc2cf5ccf6647f1718760fc1bc8
dir: /include/signal.h/

View raw version
#ifndef _SIGNAL_H
#define _SIGNAL_H

#include <sys/signal.h>

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

#endif