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

10 lines
160 B
C
Raw Normal View History

2000-03-21 01:15:50 +00:00
/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
2000-03-21 01:15:50 +00:00
int
__getpid (void)
{
return getpid ();
}
libc_hidden_def (__getpid)