diff options
author | Marvin Borner | 2021-03-20 19:55:51 +0100 |
---|---|---|
committer | GitHub | 2021-03-20 19:55:51 +0100 |
commit | 5132bac014d63331acf61bb60b9254023f76b869 (patch) | |
tree | 8e2946b7a6630da13ee403c787f77270aeb6185d /apps/idle.c | |
parent | 435231378798819304eef427bad8e77dffea85df (diff) | |
parent | b96c27bba0b242fc860fc9a2fcb63f121312fa7e (diff) |
Merged ELF loading
Diffstat (limited to 'apps/idle.c')
-rw-r--r-- | apps/idle.c | 7 |
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; } |