summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++/base_process.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/LibC++/base_process.h')
-rw-r--r--dev/LibC++/base_process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/LibC++/base_process.h b/dev/LibC++/base_process.h
index 757e592..febcb32 100644
--- a/dev/LibC++/base_process.h
+++ b/dev/LibC++/base_process.h
@@ -9,12 +9,12 @@
/// @brief CRT exit, with exit code (!!! exits all threads. !!!)
/// @param code the exit code.
/// @return the return > 0 for non successful.
-extern "C" int exit(int code);
+extern "C" int exit_(int code);
/// @brief Standard C++ namespace
namespace std::base_process {
inline int exit(int code) {
- exit(code);
+ exit_(code);
return -1;
}
} // namespace std::base_process