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

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

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