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

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

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