blob: e823d9d7cdb46809e286aef1ed9e41ff71e3dfac [file] [edit]
//===-- Implementation of lgammaf 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/lgammaf.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
#include "src/__support/math/lgammaf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, lgammaf, (float x)) { return math::lgammaf(x); }
} // namespace LIBC_NAMESPACE_DECL