summaryrefslogtreecommitdiffhomepage
path: root/src/CommandLine
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-28 07:27:27 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-28 07:27:27 +0100
commit2b770125c35f061e0da813dab91f42c96b1ac749 (patch)
treef2539f45a472be6f29bee192a42976aed1298a26 /src/CommandLine
parent6a84782b5c574b7742f8fca7023556a8e4bce535 (diff)
chore: wip: including TProc and Boost for Nectar compiler frontend.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/CommandLine')
-rw-r--r--src/CommandLine/dbg.cpp4
-rw-r--r--src/CommandLine/kdbg.cpp4
-rw-r--r--src/CommandLine/ld64.cpp4
-rw-r--r--src/CommandLine/mld64.cpp4
-rw-r--r--src/CommandLine/pef-amd64-asm.cpp2
-rw-r--r--src/CommandLine/pef-amd64-drv.cpp2
6 files changed, 10 insertions, 10 deletions
diff --git a/src/CommandLine/dbg.cpp b/src/CommandLine/dbg.cpp
index 5b08a69..c5e5797 100644
--- a/src/CommandLine/dbg.cpp
+++ b/src/CommandLine/dbg.cpp
@@ -8,10 +8,10 @@
/// @file dbg.cc
/// @brief Nectar debugger.
-CK_IMPORT_C Int32 DebuggerMachPOSIX(Int32 argc, Char const* argv[]);
+CK_IMPORT_C Int32 DebuggerMachPOSIX(Int32 argc, char const* argv[]);
/// @brief Debugger entrypoint.
/// @return Status code of debugger.
-Int32 main(Int32 argc, Char const* argv[]) {
+Int32 main(Int32 argc, char const* argv[]) {
return DebuggerMachPOSIX(argc, argv);
}
diff --git a/src/CommandLine/kdbg.cpp b/src/CommandLine/kdbg.cpp
index 148efb3..2456947 100644
--- a/src/CommandLine/kdbg.cpp
+++ b/src/CommandLine/kdbg.cpp
@@ -8,10 +8,10 @@
/// @file kdbg.cc
/// @brief NeKernel debugger.
-CK_IMPORT_C Int32 DebuggerNeKernel(Int32 argc, Char const* argv[]);
+CK_IMPORT_C Int32 DebuggerNeKernel(Int32 argc, char const* argv[]);
/// @brief Debugger entrypoint.
/// @return Status code of debugger.
-Int32 main(Int32 argc, Char const* argv[]) {
+Int32 main(Int32 argc, char const* argv[]) {
return DebuggerNeKernel(argc, argv);
}
diff --git a/src/CommandLine/ld64.cpp b/src/CommandLine/ld64.cpp
index 6d8a247..b438315 100644
--- a/src/CommandLine/ld64.cpp
+++ b/src/CommandLine/ld64.cpp
@@ -8,8 +8,8 @@
/// @file ld64.cc
/// @brief Nectar linker for AE objects.
-CK_IMPORT_C Int32 DynamicLinker64PEF(Int32 argc, Char const* argv[]);
+CK_IMPORT_C Int32 DynamicLinker64PEF(Int32 argc, char const* argv[]);
-Int32 main(Int32 argc, Char const* argv[]) {
+Int32 main(Int32 argc, char const* argv[]) {
return DynamicLinker64PEF(argc, argv);
}
diff --git a/src/CommandLine/mld64.cpp b/src/CommandLine/mld64.cpp
index f19712b..32fc0ba 100644
--- a/src/CommandLine/mld64.cpp
+++ b/src/CommandLine/mld64.cpp
@@ -8,8 +8,8 @@
/// @file ld64.cc
/// @brief Nectar linker for AE objects.
-CK_IMPORT_C Int32 DynamicLinker64MachO(Int32 argc, Char const* argv[]);
+CK_IMPORT_C Int32 DynamicLinker64MachO(Int32 argc, char const* argv[]);
-Int32 main(Int32 argc, Char const* argv[]) {
+Int32 main(Int32 argc, char const* argv[]) {
return DynamicLinker64MachO(argc, argv);
}
diff --git a/src/CommandLine/pef-amd64-asm.cpp b/src/CommandLine/pef-amd64-asm.cpp
index 3ca4639..77ca000 100644
--- a/src/CommandLine/pef-amd64-asm.cpp
+++ b/src/CommandLine/pef-amd64-asm.cpp
@@ -19,7 +19,7 @@ static auto kPath = "/usr/lib/libCompilerKit.so";
static auto kSymbol = "AssemblerMainAMD64";
-Int32 main(Int32 argc, Char const* argv[]) {
+Int32 main(Int32 argc, char const* argv[]) {
CompilerKit::ModuleLoader dylib;
dylib(kPath, kSymbol);
diff --git a/src/CommandLine/pef-amd64-drv.cpp b/src/CommandLine/pef-amd64-drv.cpp
index c8d8dbe..0f919b4 100644
--- a/src/CommandLine/pef-amd64-drv.cpp
+++ b/src/CommandLine/pef-amd64-drv.cpp
@@ -19,7 +19,7 @@ static auto kPath = "/usr/lib/libCompilerKit.so";
static auto kSymbol = "CompilerNectarAMD64";
-Int32 main(Int32 argc, Char const* argv[]) {
+Int32 main(Int32 argc, char const* argv[]) {
CompilerKit::ModuleLoader dylib;
dylib(kPath, kSymbol);