diff --git a/boredos.iso b/boredos.iso index b441b7b..54b7ccc 100644 Binary files a/boredos.iso and b/boredos.iso differ diff --git a/src/kernel/userland/libc/stdlib.c b/src/kernel/userland/libc/stdlib.c index d598fb7..d1af780 100644 --- a/src/kernel/userland/libc/stdlib.c +++ b/src/kernel/userland/libc/stdlib.c @@ -300,9 +300,7 @@ char* getcwd(char *buf, int size) { } void sleep(int ms) { - // We don't have a sleep syscall yet, so we'll just busy wait for now or skip - // Actually, BoredOS doesn't seem to have a sleep syscall. - // I'll add one if needed, but for now I'll just skip. + (void)ms; }