repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes compile failure if REENTRANT_SYSCALLS_PROVIDED and MISSING_SYSCALL_NAMES defined
[newlib-cygwin.git]
/
libgloss
/
mn10300
/
kill.c
blob
d63a2f82cdbb5596daf61c545b2cfd90756ad1e9
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include
"trap.h"
5
6
7
int
8
_kill
(
int
n
,
int
m
)
9
{
10
return
TRAP0
(
SYS_exit
,
0xdead
,
0
,
0
);
11
}
12