f7ad13219ce0db9912d1eaf259fbf9048eda8a4f
[musl] / thrd_yield.c
1 #include <threads.h>
2 #include "syscall.h"
3
4 void thrd_yield()
5 {
6         __syscall(SYS_sched_yield);
7 }