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

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

static __inline double _sinh(double x)
{
  return spu_extract(_sinhd2(spu_promote(x, 0)), 0);
}