source: trunk/libs/newlib/src/libgloss/riscv/sys_kill.c @ 450

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

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

File size: 224 bytes
Line 
1#include <machine/syscall.h>
2#include "internal_syscall.h"
3
4/* Send a signal. Minimal implementation for a system without processes
5   just causes an error.  */
6int
7_kill(int pid, int sig)
8{
9  errno = EINVAL;
10  return -1;
11}
Note: See TracBrowser for help on using the repository browser.