1#include <threads.h>
2
3#include <zircon/syscalls.h>
4
5void thrd_yield() {
6    _zx_nanosleep(0ull);
7}
8