ack/plat/cpm/libsys/kill.c

15 lines
164 B
C
Raw Normal View History

2007-04-27 22:42:41 +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;
}