summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/exp/dexps.c
blob: 952cf0e2b8f72cfd51b4c6398a627bbd23c43afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
**  -*- C -*-
**
** dexps.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:02:41 2006 jofret
** Last update Wed Jan 31 09:20:40 2007 jofret
**
** Copyright INRIA 2006
*/

#include <math.h>

double	       dexps(double x) {
  return (exp(x));
}