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

#include <reent.h>

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