ld-acess/libc - Implimenting functions required by ARM eabi
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / signal.h
1 /*
2  * Acess2 C Library
3  * - By John Hodge (thePowersGang)
4  *
5  * signal.h
6  * - POSIX Signal Emulation/Interface
7  */
8 #ifndef _SIGNAL_H_
9 #define _SIGNAL_H_
10
11 typedef void (*sighandler_t)(int);
12
13 #define SIG_DFL ((void*)0)
14 #define SIG_ERR ((void*)-1)
15
16 #define SIGABRT 6
17
18 #define SIGPIPE 1001
19 #define SIGCHLD 1002
20
21 extern int      raise(int sig);
22
23 #endif
24

UCC git Repository :: git.ucc.asn.au