musl-tcc/src/thread/thrd_yield.c

8 lines
94 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <threads.h>
#include "syscall.h"
void thrd_yield()
{
__syscall(SYS_sched_yield);
}