Welcome to mirror list, hosted at ThFree Co, Russian Federation.

kill.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f77906dec79e55a34ff55500e614bd29d79396f (plain)
1
2
3
4
5
6
7
8
9
10
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>

int kill(int pid, int sig)
{
  errno = ENOSYS;
  return -1;
}