From 7cc54e1f6a907fdbd6b1b29c36383d7c8fc0714c Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Wed, 26 Mar 2025 13:03:07 -0400 Subject: [PATCH] System/Shell/Commands: Add stub for exit --- System/Shell/Commands/exit.HC | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 System/Shell/Commands/exit.HC diff --git a/System/Shell/Commands/exit.HC b/System/Shell/Commands/exit.HC new file mode 100644 index 0000000..e5e6869 --- /dev/null +++ b/System/Shell/Commands/exit.HC @@ -0,0 +1,5 @@ +I64 @shell_cmd_exit(@shell* sh, I64 argc, U8** argv) +{ + // stub + return 0; +} \ No newline at end of file