mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 11:31:00 +08:00
fff27f8429
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
11 lines
119 B
C
11 lines
119 B
C
/* connector for getpid */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
getpid (void)
|
|
{
|
|
return _getpid_r (_REENT);
|
|
}
|