index
:
marvinborner/Melvix
dev
:computer: Small operating system written from scratch (covid/school project)
Marvin
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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(); }