8 lines
107 B
C
8 lines
107 B
C
#include <syscall.h>
|
|
|
|
unsigned int sleep(unsigned int seconds) {
|
|
syscall_sleep(seconds, 0);
|
|
return 0;
|
|
}
|
|
|