toaruos/libc/unistd/sleep.c
2021-05-31 10:54:11 +09:00

8 lines
107 B
C

#include <syscall.h>
unsigned int sleep(unsigned int seconds) {
syscall_sleep(seconds, 0);
return 0;
}