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