summaryrefslogtreecommitdiff
path: root/src/unistd/_exit.cpp
blob: 6fbf3a51d42f461e403c3a971f4503d12e9412d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//===------------------- Implementation of _exit --------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "src/unistd/_exit.h"
#include "src/__support/OSUtil/quick_exit.h"
#include "src/__support/common.h"

namespace LIBC_NAMESPACE {

[[noreturn]] LLVM_LIBC_FUNCTION(void, _exit, (int status)) {
  quick_exit(status);
}

} // namespace LIBC_NAMESPACE