git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
USB/UHCI - Cleanup
[tpg/acess2.git]
/
Usermode
/
include
/
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
#define SIG_DFL ((void*)0)
12
#define SIG_ERR ((void*)-1)
13
14
#define SIGABRT 6
15
16
#define SIGPIPE 1001
17
#define SIGCHLD 1002
18
19
#endif
20
UCC
git Repository :: git.ucc.asn.au