glibc/sysdeps/unix/sysv/aix/getpid.c
2002-08-03 06:57:53 +00:00

10 lines
160 B
C

/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
int
__getpid (void)
{
return getpid ();
}
libc_hidden_def (__getpid)