mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 16:50:07 +00:00
10 lines
160 B
C
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)
|