mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
AIX implementation of kill.
This commit is contained in:
parent
551e64e98e
commit
4ae9382d40
8
sysdeps/unix/sysv/aix/kill.c
Normal file
8
sysdeps/unix/sysv/aix/kill.c
Normal 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user