Retro68/gcc/newlib/libc/syscalls/sysgetpid.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

11 lines
119 B
C

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