1 #ifndef PYTHONIC_INCLUDE_MATH_CEIL_HPP
2 #define PYTHONIC_INCLUDE_MATH_CEIL_HPP
3 
4 #include "pythonic/include/utils/functor.hpp"
5 
6 PYTHONIC_NS_BEGIN
7 
8 namespace math
9 {
10   template <class T>
11   long ceil(T x);
12 
13   DEFINE_FUNCTOR(pythonic::math, ceil);
14 }
15 PYTHONIC_NS_END
16 
17 #endif
18