blob: 6fbf3a51d42f461e403c3a971f4503d12e9412d3 [file] [log] [blame]
//===------------------- 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