diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 15:11:13 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 15:11:13 +0100 |
| commit | a3093cbf5746993148f1621f7f80c6d093d65dbb (patch) | |
| tree | e8a62112a0f3a6937320bd26a827c0d75cad0140 /src/CommandLine | |
| parent | 5fbec948d16f63c5847e8e27b4fafc9c081c76fd (diff) | |
[CHORE] GenericsLibrary: pstd, swap: Free function implementation update.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/CommandLine')
| -rw-r--r-- | src/CommandLine/dbg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandLine/dbg.cpp b/src/CommandLine/dbg.cpp index 3d6ea05..a4f5a94 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 DebuggerMach(Int32 argc, char const* argv[]); /// @brief Debugger entrypoint. /// @return Status code of debugger. Int32 main(Int32 argc, char const* argv[]) { - return DebuggerMachPOSIX(argc, argv); + return DebuggerMach(argc, argv); } |
