From 46566c766cd0dd83a95b960c6b940668dbf819d9 Mon Sep 17 00:00:00 2001 From: Lluciocc <114759545+Lluciocc@users.noreply.github.com> Date: Thu, 14 May 2026 10:20:56 +0200 Subject: [PATCH] Update bsh.c --- src/userland/cli/bsh.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/userland/cli/bsh.c b/src/userland/cli/bsh.c index 5e8262e..529823b 100644 --- a/src/userland/cli/bsh.c +++ b/src/userland/cli/bsh.c @@ -1033,10 +1033,6 @@ static int bsh_open_file(const char *path, const char *mode, bool *is_kernel) { return sys_open(path, mode); } -static void wait_for_pid(int pid) { - wait_for_pid_status(pid, NULL); -} - static void cmd_clear(void) { sys_write(1, "\x1b[2J\x1b[H", 7); }