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

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

double	       datans(double x) {
  return (atan(x));
}