summaryrefslogtreecommitdiff
path: root/kjarna_runtime/main.c
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2024-03-03 08:44:42 +0000
committerAda Christine <adachristine18@gmail.com>2024-03-03 08:44:42 +0000
commitf61da8be06fdfebc598cba783e78117319231140 (patch)
tree0ef21f89e98a985ab5d985aaac1e032c868e8b81 /kjarna_runtime/main.c
parent9681d6a6cbde12b00beab62683b8db98f680ba2b (diff)
build changes
Diffstat (limited to 'kjarna_runtime/main.c')
-rw-r--r--kjarna_runtime/main.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/kjarna_runtime/main.c b/kjarna_runtime/main.c
deleted file mode 100644
index 12a5522..0000000
--- a/kjarna_runtime/main.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <unistd.h>
-#include <stdio.h>
-
-#define KJARNA_REVISION 1
-
-int main(int argc, char **argv)
-{
- (void)argc;
- (void)argv;
-
- printf("kjarna %d\n", KJARNA_REVISION);
-
- while (1);
-
- return 0;
-}
-