2020-09-03 11:13:37 +02:00
|
|
|
/* See LICENSE of license details. */
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include "stub.h"
|
2020-09-16 10:28:54 +02:00
|
|
|
#include "weak_under_alias.h"
|
2020-09-03 11:13:37 +02:00
|
|
|
|
|
|
|
int __wrap_kill(int pid, int sig)
|
|
|
|
{
|
|
|
|
return _stub(EINVAL);
|
|
|
|
}
|
2020-09-16 10:28:54 +02:00
|
|
|
weak_under_alias(kill);
|