]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/thread/thrd_yield.c
bump version to 0.0~git20230821.ec4566b-1~bpo12+pve1
[wasi-libc.git] / libc-top-half / musl / src / thread / thrd_yield.c
1 #include <threads.h>
2 #include "syscall.h"
3
4 void thrd_yield()
5 {
6 __syscall(SYS_sched_yield);
7 }