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

#include <math.h>

float		sexps(float x) {
  return (exp(x));
}