uglify headers for the sake of junk that compiles with gcc -std=c89/-ansi
[musl] / src / misc / sched_yield.c
1 #include <sched.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int __yield()
6 {
7         return syscall(SYS_sched_yield);
8 }
9
10 weak_alias(__yield, sched_yield);