4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00
Yaakov Selkowitz fff27f8429 ansification: remove _DEFUN_VOID
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:19 -06:00

11 lines
119 B
C

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