FreeRTOS-RISCV/RISC-V-HiFive1_e-FreedomStudio/freedom-e-sdk/libwrap/sys/kill.c

12 lines
204 B
C
Raw Permalink Normal View History

2019-06-28 23:08:36 +02:00
/* See LICENSE of license details. */
#include <errno.h>
#include "stub.h"
#include "weak_under_alias.h"
int __wrap_kill(int pid, int sig)
{
return _stub(EINVAL);
}
weak_under_alias(kill);