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

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

float sinf(float angle)
{
  return _sinf(angle);
}