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

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

float tanf(float angle)
{
  return _tanf(angle);
}