summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/tan/dtans.c
blob: c4ce0346533d7d0591196b9091d0bde7c5df7e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
**  -*- C -*-
**
** dtans.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:02:41 2006 jofret
** Last update Mon Jan 29 16:12:01 2007 jofret
**
** Copyright INRIA 2006
*/

#include <math.h>

double	       dtans(double x) {
  return (tan(x));
}