From e6915fb6dd715e39e37702a6d69c220c0f1798bf Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Wed, 31 Jul 2024 17:16:21 -0400 Subject: remove argc, argv; arguments will be passed via environment variables --- applications/init/source/main.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'applications/init') diff --git a/applications/init/source/main.cpp b/applications/init/source/main.cpp index c281bc0..66ad260 100644 --- a/applications/init/source/main.cpp +++ b/applications/init/source/main.cpp @@ -1,9 +1,6 @@ #include -//this does not keep track of the processes or whether they have started -//successfully, nor does it set their argc, argv, stdin, stdout, or stderr. - -int main(int, char **) { +int main() { euler::syscall::process_handle dummy; euler::syscall::start_process("/bin/compositor", {}, {}, dummy); euler::syscall::start_process("/bin/clock", {}, {}, dummy); -- cgit v1.2.3