diff options
Diffstat (limited to 'libs/kstd/src/libc/stdlib.cpp')
| -rw-r--r-- | libs/kstd/src/libc/stdlib.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libs/kstd/src/libc/stdlib.cpp b/libs/kstd/src/libc/stdlib.cpp new file mode 100644 index 0000000..a0f062a --- /dev/null +++ b/libs/kstd/src/libc/stdlib.cpp @@ -0,0 +1,19 @@ +#include "kstd/bits/os.hpp" + +namespace kstd::libc +{ + + extern "C" + { + [[noreturn]] auto abort() -> void + { + kstd::os::abort(); + } + + [[noreturn, gnu::weak]] auto free(void *) -> void + { + kstd::os::panic("Tried to call free."); + } + } + +} // namespace kstd::libc
\ No newline at end of file |
