// -*- C++ -*-
//===-- ratio -------------------------------------------------------------===//
//
// 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_ratio
#define __ONEDPL_ratio
#include "oneapi/dpl/internal/common_config.h"
#include <ratio>

namespace oneapi
{
namespace dpl
{
using ::std::ratio;
using ::std::ratio_add;
using ::std::ratio_divide;
using ::std::ratio_equal;
using ::std::ratio_greater;
using ::std::ratio_greater_equal;
using ::std::ratio_less;
using ::std::ratio_less_equal;
using ::std::ratio_multiply;
using ::std::ratio_not_equal;
using ::std::ratio_subtract;
} // namespace dpl
} // namespace oneapi
#endif
