summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++
diff options
context:
space:
mode:
Diffstat (limited to 'dev/LibC++')
-rw-r--r--dev/LibC++/base_exception.h4
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) {