]> begriffs open source - cmsis-freertos/blob - Demo/RISC-V-Qemu-sifive_e-FreedomStudio/freedom-e-sdk/libwrap/sys/kill.c
Fixed potential unused parameter warnings
[cmsis-freertos] / Demo / RISC-V-Qemu-sifive_e-FreedomStudio / freedom-e-sdk / libwrap / sys / kill.c
1 /* See LICENSE of license details. */
2
3 #include <errno.h>
4 #include "stub.h"
5 #include "weak_under_alias.h"
6
7 int __wrap_kill(int pid, int sig)
8 {
9   return _stub(EINVAL);
10 }
11 weak_under_alias(kill);