quick fix

This commit is contained in:
boreddevnl 2026-03-04 22:28:00 +01:00
parent d49d082712
commit e5cfab37dc
2 changed files with 1 additions and 3 deletions

Binary file not shown.

View file

@ -300,9 +300,7 @@ char* getcwd(char *buf, int size) {
} }
void sleep(int ms) { 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; (void)ms;
} }