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

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

double	       dexp10s(double x) {
  return (pow(10, x));
}