musl-tcc/src/thread/thrd_yield.c

8 lines
94 B
C

#include <threads.h>
#include "syscall.h"
void thrd_yield()
{
__syscall(SYS_sched_yield);
}