opuntiaOS - an operating system targeting x86 and ARMv7
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 16 lines 264 B view raw
1#ifndef _LIBC_SIGNAL_H 2#define _LIBC_SIGNAL_H 3 4#include <bits/signal.h> 5#include <sys/cdefs.h> 6#include <sys/types.h> 7 8__BEGIN_DECLS 9 10int kill(pid_t pid, int sig); 11int sigaction(int signo, void* callback); 12int raise(int sig); 13 14__END_DECLS 15 16#endif // _LIBC_SIGNAL_H