1#include <sched.h>
2
3#include <zircon/syscalls.h>
4
5int sched_yield() {
6    _zx_nanosleep(0ull);
7    return 0;
8}
9