summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/__getpid.c
blob: 32353b717df4eec19a8858146a4b8b70f13fee91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 *  Some C Libraries reference this routine since they think getpid is
 *  a real system call.
 *
 *  $Id$
 */

#include <unistd.h>

pid_t __getpid(void)
{
  return getpid();
}