summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/tan/stans.c
blob: 7694a3006ecb6f112ca09122aeb488532ad45452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
**  -*- C -*-
**
** stans.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 11:05:37 2006 jofret
** Last update Fri Apr 20 14:40:05 2007 jofret
**
** Copyright INRIA 2006
*/

#include <math.h>
#include "tan.h"

float		stans(float x) {
  return (tan(x));
}