Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d2-release
/
.
/
src
/
sched
/
sched_yield.c
blob: ee6f0e7f160410c765146fd5713adcd9909627c1 [
file
] [
log
] [
blame
] [
edit
]
#include
<sched.h>
#include
"syscall.h"
int
sched_yield
()
{
return
syscall
(
SYS_sched_yield
);
}