#include #include "syscall.h" int sched_yield() { return syscall(SYS_sched_yield); } #ifdef TEST int main(void) { return 0; } #endif