// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Copyright (C) Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// This file incorporates work covered by the following copyright and permission
// notice:
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===//

#ifndef _ONEDPL_CMATH
#define _ONEDPL_CMATH

#include "oneapi/dpl/internal/common_config.h"
#include <cmath>

namespace oneapi
{
namespace dpl
{
using ::std::abs;
using ::std::acos;
using ::std::acosh;
using ::std::asin;
using ::std::asinh;
using ::std::atan;
using ::std::atan2;
using ::std::atanh;
using ::std::cbrt;
using ::std::ceil;
using ::std::copysign;
using ::std::copysignf;
using ::std::cos;
using ::std::cosh;
using ::std::erf;
using ::std::erfc;
using ::std::exp;
using ::std::exp2;
using ::std::expm1;
using ::std::fabs;
using ::std::fdim;
using ::std::floor;
using ::std::fma;
using ::std::fmax;
using ::std::fmaxf;
using ::std::fmin;
using ::std::fminf;
using ::std::fmod;
using ::std::frexp;
using ::std::hypot;
using ::std::ilogb;
using ::std::isgreater;
using ::std::isgreaterequal;
using ::std::isinf;
using ::std::isless;
using ::std::islessequal;
using ::std::isnan;
using ::std::isunordered;
using ::std::ldexp;
using ::std::lgamma;
using ::std::log;
using ::std::log10;
using ::std::log1p;
using ::std::log2;
using ::std::logb;
using ::std::modf;
using ::std::nan;
using ::std::nanf;
using ::std::nearbyint;
using ::std::nearbyintf;
using ::std::nextafter;
using ::std::pow;
using ::std::remainder;
using ::std::remquo;
using ::std::round;
using ::std::roundf;
using ::std::sin;
using ::std::sinh;
using ::std::sqrt;
using ::std::tan;
using ::std::tanh;
using ::std::tgamma;
using ::std::trunc;
using ::std::truncf;
} // namespace dpl
} // namespace oneapi

namespace dpl = oneapi::dpl;

#endif // _ONEDPL_CMATH
