glibc/sysdeps/unix/sysv/aix/kill.c

9 lines
151 B
C
Raw Normal View History

/* 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);
}