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

7 lines
112 B
C
Raw Normal View History

/* This is a system call. We only have to provide the wrapper. */
int
__getpid (void)
{
return getpid ();
}