AIX implementation of kill.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:16:47 +00:00
parent 551e64e98e
commit 4ae9382d40

View File

@ -0,0 +1,8 @@
/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
int
__kill (pid_t pid, int sig)
{
return kill (pid, sig);
}