summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/exp10/sexp10a.c
diff options
context:
space:
mode:
authorjofret2007-10-22 15:26:16 +0000
committerjofret2007-10-22 15:26:16 +0000
commit9abdd47800ebd9b2c45f078338e9adabecf74f5a (patch)
tree07ee1c1156c01d5e92b9dee11d6dd00684e6b004 /src/elementaryFunctions/exp10/sexp10a.c
parent1c4dd59a3c4a052771bfdb3c625dd11b4eb94b60 (diff)
downloadscilab2c-9abdd47800ebd9b2c45f078338e9adabecf74f5a.tar.gz
scilab2c-9abdd47800ebd9b2c45f078338e9adabecf74f5a.tar.bz2
scilab2c-9abdd47800ebd9b2c45f078338e9adabecf74f5a.zip
Moving array functions prototype and add some C99 Compliance
Diffstat (limited to 'src/elementaryFunctions/exp10/sexp10a.c')
-rw-r--r--src/elementaryFunctions/exp10/sexp10a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/exp10/sexp10a.c b/src/elementaryFunctions/exp10/sexp10a.c
index f76089f7..259661dd 100644
--- a/src/elementaryFunctions/exp10/sexp10a.c
+++ b/src/elementaryFunctions/exp10/sexp10a.c
@@ -5,14 +5,14 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Dec 7 16:03:27 2006 jofret
-** Last update Thu Sep 6 16:57:07 2007 bruno
+** Last update Mon Oct 22 09:53:46 2007 bruno
**
** Copyright INRIA 2006
*/
#include "exp10.h"
-void sexp10a(float* x, float* y, int size) {
+void sexp10a(float* x, int size, float* y) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = sexp10s(x[i]);