aboutsummaryrefslogtreecommitdiff
path: root/apps/idle.c
diff options
context:
space:
mode:
authorMarvin Borner2021-03-20 19:55:51 +0100
committerGitHub2021-03-20 19:55:51 +0100
commit5132bac014d63331acf61bb60b9254023f76b869 (patch)
tree8e2946b7a6630da13ee403c787f77270aeb6185d /apps/idle.c
parent435231378798819304eef427bad8e77dffea85df (diff)
parentb96c27bba0b242fc860fc9a2fcb63f121312fa7e (diff)
Merged ELF loading
Diffstat (limited to 'apps/idle.c')
-rw-r--r--apps/idle.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/idle.c b/apps/idle.c
index 3f10c3e..15ffc68 100644
--- a/apps/idle.c
+++ b/apps/idle.c
@@ -1,7 +1,12 @@
// MIT License, Copyright (c) 2021 Marvin Borner
-int main(void)
+#include <def.h>
+
+int main(int argc, char **argv)
{
+ UNUSED(argc);
+ UNUSED(argv);
while (1)
;
+ return 0;
}