Retro68/gcc/newlib/libc/sys/rdos/kill.c

11 lines
153 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
int kill(int pid, int sig)
{
errno = ENOSYS;
return -1;
}