source: trunk/libs/newlib/src/newlib/libc/syscalls/syskill.c @ 543

Last change on this file since 543 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 140 bytes
Line 
1/* connector for kill */
2
3#include <reent.h>
4#include <signal.h>
5
6int
7kill (int pid,
8     int sig)
9{
10  return _kill_r (_REENT, pid, sig);
11}
Note: See TracBrowser for help on using the repository browser.