ack/plat/pc65oo2/libsys/kill.c

15 lines
164 B
C
Raw Permalink Normal View History

2024-02-22 15:13:52 +00:00
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
int kill(pid_t pid, int sig)
{
errno = EINVAL;
return -1;
}