Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cosh.h « headers « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b8875a080aece877757ff72bbc23d27b21ca55f (plain)
1
2
3
4
5
6
#include "headers/coshd2.h"

static __inline double _cosh(double x)
{
  return spu_extract(_coshd2(spu_promote(x, 0)), 0);
}