getservbyport_r: fix wrong result if getnameinfo fails with EAI_OVERFLOW
[musl] / src / sched / sched_yield.c
1 #include <sched.h>
2 #include "syscall.h"
3
4 int sched_yield()
5 {
6         return syscall(SYS_sched_yield);
7 }