// -*- C++ -*-
//===-- cmath -------------------------------------------------------------===//
//
// 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::acos;
using ::std::acosh;
using ::std::asin;
using ::std::asinh;
using ::std::atan;
using ::std::atan2;
using ::std::atanh;
using ::std::cbrt;
using ::std::cos;
using ::std::cosh;
using ::std::erf;
using ::std::erfc;
using ::std::exp;
using ::std::exp2;
using ::std::expm1;
using ::std::fdim;
using ::std::fma;
using ::std::fmod;
using ::std::frexp;
using ::std::hypot;
using ::std::ilogb;
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::nextafter;
using ::std::pow;
using ::std::remainder;
using ::std::remquo;
using ::std::sin;
using ::std::sinh;
using ::std::sqrt;
using ::std::tan;
using ::std::tanh;
using ::std::tgamma;
} // namespace dpl
} // namespace oneapi
#endif
