diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-08 18:34:43 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-08 18:34:43 +0200 |
| commit | 65e45e509f43063e1efa3e52ee7c53edfdae0a83 (patch) | |
| tree | a00ffdc5c9fc043809417e9faf42975c0cde720c /dev | |
| parent | ffad2caaf9daf540e313f2ffe029de04cb3d2b80 (diff) | |
fix: LibC++: fix `base_exception.h`
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/LibC++/base_exception.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/LibC++/base_exception.h b/dev/LibC++/base_exception.h index 314ac12..17b41e3 100644 --- a/dev/LibC++/base_exception.h +++ b/dev/LibC++/base_exception.h @@ -7,11 +7,11 @@ #pragma once #include <LibC++/defines.h> -#include <LibC++/process_base.h> +#include <LibC++/base_process.h> namespace std::base_exception { inline void __throw_general(void) { - exit(33); + base_process::exit(33); } inline void __throw_domain_error(const char* error) { |
