diff options
| author | Amlal <amlal@nekernel.org> | 2025-05-09 20:22:01 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-05-09 20:23:52 +0200 |
| commit | 1391fa1bdc1cfe864596d3120bda12590131bc62 (patch) | |
| tree | 103f36459712cd3af1af8d603404684ce41718b4 /public | |
| parent | 902bafa5dc8c3ac5fcbf13a5af73e016e9c64685 (diff) | |
dev(kernel, tooling): better code quality inside the codebase and more checks inside the kernel, and cli.
also:
- make use _NeMain for the mk_fwrk tool.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'public')
| -rw-r--r-- | public/tools/mgmt/src/CommandLine.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/public/tools/mgmt/src/CommandLine.cc b/public/tools/mgmt/src/CommandLine.cc index d269c894..45990d08 100644 --- a/public/tools/mgmt/src/CommandLine.cc +++ b/public/tools/mgmt/src/CommandLine.cc @@ -1,3 +1,5 @@ -int main() { - return 0; +#include <user/SystemCalls.h> + +SInt32 _NeMain(SInt32 argc, Char* argv[]) { + return EXIT_FAILURE; }
\ No newline at end of file |
