Your IP : 216.73.216.79


Current Path : /lib/python3/dist-packages/pythran/pythonic/math/
Upload File :
Current File : //lib/python3/dist-packages/pythran/pythonic/math/ceil.hpp

#ifndef PYTHONIC_MATH_CEIL_HPP
#define PYTHONIC_MATH_CEIL_HPP

#include "pythonic/include/math/ceil.hpp"

#include "pythonic/utils/functor.hpp"
#include <cmath>

PYTHONIC_NS_BEGIN

namespace math
{
  template <class T>
  long ceil(T x)
  {
    return std::ceil(x);
  }
}
PYTHONIC_NS_END

#endif