aboutsummaryrefslogtreecommitdiff
path: root/libk/stdlib/console.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libk/stdlib/console.cc')
-rw-r--r--libk/stdlib/console.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/libk/stdlib/console.cc b/libk/stdlib/console.cc
index a234e6b..c076297 100644
--- a/libk/stdlib/console.cc
+++ b/libk/stdlib/console.cc
@@ -13,15 +13,3 @@ void Console::set(Console* ptr) {
Iterator<Console*> Console::begin() {
return Iterator<Console*>(global_console, last_console);
}
-
-void abort() {
- /*
- * On gcc, a 'while(true) {}' will infinitely loop
- * but clang will optimize it away on -O2 if it's empty
- * therefore, add no-op
- */
- while (true) {
- asm volatile("nop");
- }
- __builtin_unreachable();
-}