blob: f64014f01a75660dc95bd25915b99684719f47a5 [file]
//===-- Implementation of nan 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/nan.h"
#include "src/__support/math/nan.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(double, nan, (const char *arg)) { return math::nan(arg); }
} // namespace LIBC_NAMESPACE_DECL