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

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

float		sexp10s(float x) {
  return (pow(10,x));
}