summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/exp/sexps.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/exp/sexps.c')
-rw-r--r--src/elementaryFunctions/exp/sexps.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/elementaryFunctions/exp/sexps.c b/src/elementaryFunctions/exp/sexps.c
new file mode 100644
index 00000000..f8f8e8d3
--- /dev/null
+++ b/src/elementaryFunctions/exp/sexps.c
@@ -0,0 +1,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));
+}