1 #include "headers/coshd2.h"
2 
_cosh(double x)3 static __inline double _cosh(double x)
4 {
5   return spu_extract(_coshd2(spu_promote(x, 0)), 0);
6 }
7