From 50392995d6e7f3a10fb74bb2f9073a4790f8933c Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Mon, 11 Mar 2024 21:40:28 -0400 Subject: simple env with basic test init program --- lib/jlibc/stdlib/exit.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/jlibc/stdlib/exit.c (limited to 'lib/jlibc/stdlib/exit.c') diff --git a/lib/jlibc/stdlib/exit.c b/lib/jlibc/stdlib/exit.c new file mode 100644 index 0000000..225f74e --- /dev/null +++ b/lib/jlibc/stdlib/exit.c @@ -0,0 +1,5 @@ +__attribute__((noreturn)) +void exit(int status) +{ + +} -- cgit v1.2.1