diff options
Diffstat (limited to 'src/userspace/libc/unistd/get_pid.c')
-rw-r--r-- | src/userspace/libc/unistd/get_pid.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/userspace/libc/unistd/get_pid.c b/src/userspace/libc/unistd/get_pid.c new file mode 100644 index 0000000..c42f460 --- /dev/null +++ b/src/userspace/libc/unistd/get_pid.c @@ -0,0 +1,7 @@ +#include <stdint.h> +#include <syscall.h> + +u32 get_pid() +{ + return syscall_get_pid(); +}
\ No newline at end of file |