mirror of
https://github.com/fluencelabs/musl
synced 2025-05-09 22:02:18 +00:00
this is no longer used for anything, and reportedly clashed with a builtin on certain compilers.
8 lines
97 B
C
8 lines
97 B
C
#include <sched.h>
|
|
#include "syscall.h"
|
|
|
|
int sched_yield()
|
|
{
|
|
return syscall(SYS_sched_yield);
|
|
}
|