diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 15:19:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-08 15:19:36 +0100 |
| commit | 23f8d5e362860ff4eb1be0b8bddc666cb23c11bf (patch) | |
| tree | 831701ce306908b9c3cb34a7a0d74f94fc5a39ec /src/CommandLine | |
| parent | 741a874e823e9a2ac55aba0efe85d3b581009826 (diff) | |
| parent | e69204f159ee7fcd5b81085c63c3b17bebf6c5b0 (diff) | |
Merge pull request #67 from ne-foss-org/genericslibrary-header-patches
[CHORE] GenericsLibrary: pstd, swap: Free function implementations
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); } |
