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

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

static __inline float _cosf(float angle)
{
  return spu_extract(_cosf4(spu_promote(angle, 0)), 0);
}