Sign in
mojo
/
mojo-testing
/
17dd2f6df02650b221769d39c55857e06602a733
/
.
/
fusl
/
src
/
sched
/
sched_yield.c
blob: 932fba120af884f7052cf0dca62c9f26706ea93c [
file
]
#include
<sched.h>
#include
"syscall.h"
int
sched_yield
()
{
return
syscall
(
SYS_sched_yield
);
}