blob: 67cd8f7c585f4e2bad376b5c0888b416cfd980ec [file] [log] [blame]
//===-- Implementation of round redirector --------------------------------===//
//
// 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 okay for this redirector.
// NOLINTNEXTLINE(llvmlibc-restrict-system-libc-headers)
#include <math.h>
namespace __llvm_libc {
double __round_redirector(double x) {
return ::round(x);
}
} // namespace __llvm_libc