1 // Copyright 2022 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include <__config> 6 7 #include "base/base_export.h" 8 #include "base/immediate_crash.h" 9 10 _LIBCPP_BEGIN_NAMESPACE_STD 11 __libcpp_verbose_abort(char const * format,...)12_LIBCPP_NORETURN BASE_EXPORT void __libcpp_verbose_abort(char const* format, 13 ...) { 14 base::ImmediateCrash(); 15 } 16 17 _LIBCPP_END_NAMESPACE_STD 18