This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/stdlib/entry.cpp
2024-01-13 16:43:49 -05:00

14 lines
301 B
C++

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)
;
}