xref: /llvm-project/libc/src/stdlib/_Exit.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
166d00febSPaula Toth //===-- Implementation header for _Exit -------------------------*- C++ -*-===//
2a499d680SAlex Brachet //
3a499d680SAlex Brachet // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4a499d680SAlex Brachet // See https://llvm.org/LICENSE.txt for license information.
5a499d680SAlex Brachet // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6a499d680SAlex Brachet //
7a499d680SAlex Brachet //===----------------------------------------------------------------------===//
8a499d680SAlex Brachet 
9270547f3SGuillaume Chatelet #ifndef LLVM_LIBC_SRC_STDLIB__EXIT_H
10270547f3SGuillaume Chatelet #define LLVM_LIBC_SRC_STDLIB__EXIT_H
11a499d680SAlex Brachet 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
13*5ff3ff33SPetr Hosek 
14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
15a499d680SAlex Brachet 
16a499d680SAlex Brachet [[noreturn]] void _Exit(int status);
17a499d680SAlex Brachet 
18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
19a499d680SAlex Brachet 
20270547f3SGuillaume Chatelet #endif // LLVM_LIBC_SRC_STDLIB__EXIT_H
21