2 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 * See the copyright notice in the ACK home directory, in the file "Copyright".
7 #if defined(_POSIX_SOURCE)
12 int _kill(int pid
, int sig
);
18 if (sig
< 0 || sig
> _NSIG
)
20 return _kill(_getpid(), sig
);