summaryrefslogtreecommitdiff
path: root/stdlib/entry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/entry.cpp')
-rw-r--r--stdlib/entry.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/stdlib/entry.cpp b/stdlib/entry.cpp
deleted file mode 100644
index 5557c8a..0000000
--- a/stdlib/entry.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-int main(int argc, char **argv);
-
-extern "C" [[noreturn]] void _entry() {
- //TODO: get command line via system call and populate argc and argv.
- int argc = 0;
- char **argv = 0;
-
- int result = main(argc, argv);
-
- //TODO: exit via system call and return result.
- (void)result;
- while (1)
- ;
-}