aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/syscalls/sysgetpid.c
blob: f18783c753eb398c26292d4a4a1ced01cc29c7b0 (plain)
1
2
3
4
5
6
7
8
9
10
/* connector for getpid */

#include <reent.h>
#include <unistd.h>

int
_DEFUN_VOID (getpid)
{
  return _getpid_r (_REENT);
}