newlib-cygwin/newlib/libc/syscalls/sysgetpid.c

10 lines
106 B
C

/* connector for getpid */
#include <reent.h>
int
_DEFUN_VOID (getpid)
{
return _getpid_r (_REENT);
}