AIX implementation of getpid.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:15:50 +00:00
parent 7c5ac4b846
commit c7e7790bfb

View File

@ -0,0 +1,6 @@
/* This is a system call. We only have to provide the wrapper. */
int
__getpid (void)
{
return getpid ();
}