blob: aa5d7ed7660c5eda4fd4119ddc3441c49b163a53 [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <zircon/assert.h>
#include <__verbose_abort>
// TODO(https://fxbug.dev/42080760): These should print something useful instead of just crashing.
extern "C" void __assert_fail(const char*, const char*, int, const char*) { __builtin_trap(); }
extern "C" void __zx_panic(const char* format, ...) { __builtin_trap(); }
void std::__libcpp_verbose_abort(const char* format, ...) { __builtin_trap(); }
extern "C" void abort() { __builtin_trap(); }