Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / signal.h
1 #ifndef _SIGNALH
2 #define _SIGNALH
3
4 #pragma push_safeptr
5
6 #include "unistd.h"
7 #include "sys/signal.h"
8
9 int kill(pid_t id, int sig);
10
11 typedef int    sig_atomic_t;
12
13 void (*signal(int sig, void (*func)(int a))) (int a);
14
15
16 #define raise(sig)   kill(getpid(),sig);
17
18 #pragma pop_ptr
19
20 #endif