diff options
Diffstat (limited to 'NewKernel/Source/HError.cxx')
| -rw-r--r-- | NewKernel/Source/HError.cxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/NewKernel/Source/HError.cxx b/NewKernel/Source/HError.cxx new file mode 100644 index 00000000..ab6f3ec7 --- /dev/null +++ b/NewKernel/Source/HError.cxx @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright Mahrouss Logic + +------------------------------------------- */ + +#include <KernelKit/HError.hpp> + +namespace NewOS +{ + /// @brief Doea a system wide bug check. + /// @param void no params. + /// @return if error-free: true, otherwise false. + Boolean ke_bug_check(void) noexcept + { + return true; + } +} // namespace NewOS |
