summaryrefslogtreecommitdiff
path: root/src/unistd/getpid.c
blob: 4bc681c7d35d4f4e6c61ac9c7448514ceeb18f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <sys/types.h>
#include "_syscall.h"

pid_t getpid(void)
{
	SYSCALL(getpid, pid_t, -1, 0, 0, 0, 0, 0, 0);
}
/*
POSIX(1)
*/


#endif