diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-02 19:38:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-02 19:38:33 +0200 |
| commit | 87979899ce833ca477bb563b84e3698224119dab (patch) | |
| tree | df67a0724de4c76ce594222747220c233c3bc7f5 /dev/LibC++/base_process.h | |
| parent | 3afc481dc64a07fe7fcaff9ce7a12a492c3ec8e7 (diff) | |
| parent | fb12b9730d78052f5cafbd84fbc9a830a22cec17 (diff) | |
Merge pull request #4 from nekernel-org/dev
0.0.1
Diffstat (limited to 'dev/LibC++/base_process.h')
| -rw-r--r-- | dev/LibC++/base_process.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/dev/LibC++/base_process.h b/dev/LibC++/base_process.h index 7008b86..757e592 100644 --- a/dev/LibC++/base_process.h +++ b/dev/LibC++/base_process.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved. + Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved. ------------------------------------------- */ @@ -12,11 +12,9 @@ extern "C" int exit(int code); /// @brief Standard C++ namespace -namespace std::base_process -{ - inline int exit(int code) - { - exit(code); - return -1; - } -} // namespace std::base_process +namespace std::base_process { +inline int exit(int code) { + exit(code); + return -1; +} +} // namespace std::base_process |
