summaryrefslogtreecommitdiff
path: root/lib/libc/thread/thrd_yield.c
blob: 38cff265057f960d958db3a750ed7d9b425683d4 (plain)
1
2
3
4
5
6
7
#include <sched.h>
#include <threads.h>

void thrd_yield(void)
{
	sched_yield();
}