Retro68/gcc/newlib/libc/syscalls/sysgetpid.c
2012-03-27 01:51:53 +02:00

11 lines
126 B
C

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