107bd4394SRoseZhang03 //===-- Implementation header for quick_exit --------------------*- C++ -*-===// 207bd4394SRoseZhang03 // 307bd4394SRoseZhang03 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 407bd4394SRoseZhang03 // See https://llvm.org/LICENSE.txt for license information. 507bd4394SRoseZhang03 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 607bd4394SRoseZhang03 // 707bd4394SRoseZhang03 //===----------------------------------------------------------------------===// 807bd4394SRoseZhang03 907bd4394SRoseZhang03 #ifndef LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H 1007bd4394SRoseZhang03 #define LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H 1107bd4394SRoseZhang03 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 13*5ff3ff33SPetr Hosek 14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1507bd4394SRoseZhang03 1607bd4394SRoseZhang03 [[noreturn]] void quick_exit(int status); 1707bd4394SRoseZhang03 18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 1907bd4394SRoseZhang03 2007bd4394SRoseZhang03 #endif // LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H 21