1 //  (C) Copyright John Maddock 2017.
2 
3 //  Use, modification and distribution are subject to the
4 //  Boost Software License, Version 1.0. (See accompanying file
5 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef BOOST_MATH_COMMON_FACTOR_RT_HPP
8 #define BOOST_MATH_COMMON_FACTOR_RT_HPP
9 
10 #include <boost/integer/common_factor_rt.hpp>
11 #include <boost/config/header_deprecated.hpp>
12 
13 BOOST_HEADER_DEPRECATED("<boost/integer/common_factor_rt.hpp>");
14 
15 namespace boost {
16    namespace math {
17       using boost::integer::gcd;
18       using boost::integer::lcm;
19       using boost::integer::gcd_range;
20       using boost::integer::lcm_range;
21       using boost::integer::gcd_evaluator;
22       using boost::integer::lcm_evaluator;
23    }
24 }
25 
26 #endif  // BOOST_MATH_COMMON_FACTOR_RT_HPP
27