blob: 83b674fa6ae3b7c1c576ffa3d8562e9943aa5323 [file] [log] [blame]
//===-- Implementation of the GPU acos function ---------------------------===//
//
// 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/math/acos.h"
#include "src/__support/common.h"
#include "common.h"
namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(double, acos, (double x)) { return internal::acos(x); }
} // namespace LIBC_NAMESPACE