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

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

double tan(double angle)
{
  return _tan(angle);
}