bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git] / src / thread / thrd_yield.c
blobf7ad13219ce0db9912d1eaf259fbf9048eda8a4f
1 #include <threads.h>
2 #include "syscall.h"
4 void thrd_yield()
6 __syscall(SYS_sched_yield);