aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/unistd/get_pid.c
blob: c42f460b5418f43144f14eff8c157656a44e37be (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <syscall.h>

u32 get_pid()
{
	return syscall_get_pid();
}