Advertisement
Guest User

Untitled

a guest
May 24th, 2012
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. inline _GLIBCXX_CONSTEXPR long double
  2. abs(long double __x)
  3. { return __builtin_fabsl(__x); }
  4. #endif
  5.  
  6. template<typename _Tp>
  7. inline _GLIBCXX_CONSTEXPR
  8. typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value,
  9. double>::__type
  10. abs(_Tp __x)
  11. { return __builtin_fabs(__x); }
  12.  
  13. using ::acos;
  14.  
  15. #ifndef __CORRECT_ISO_CPP_MATH_H_PROTO1
  16. inline _GLIBCXX_CONSTEXPR float
  17. acos(float __x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement