blob: c596e27ee71c13c8abb61317607ea777c22f2cb8 [file]
//===-- Implementation of scalblnf 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/scalblnf.h"
#include "src/__support/math/scalblnf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, scalblnf, (float x, long n)) {
return math::scalblnf(x, n);
}
} // namespace LIBC_NAMESPACE_DECL