summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/exp10
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/exp10')
-rw-r--r--src/elementaryFunctions/exp10/cexp10a.c4
-rw-r--r--src/elementaryFunctions/exp10/dexp10a.c4
-rw-r--r--src/elementaryFunctions/exp10/sexp10a.c4
-rw-r--r--src/elementaryFunctions/exp10/zexp10a.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/elementaryFunctions/exp10/cexp10a.c b/src/elementaryFunctions/exp10/cexp10a.c
index 932f42ba..a1245ffb 100644
--- a/src/elementaryFunctions/exp10/cexp10a.c
+++ b/src/elementaryFunctions/exp10/cexp10a.c
@@ -5,14 +5,14 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Dec 7 14:54:24 2006 jofret
-** Last update Thu Sep 6 16:58:36 2007 bruno
+** Last update Mon Oct 22 09:54:11 2007 bruno
**
** Copyright INRIA 2006
*/
#include "exp10.h"
-void cexp10a(floatComplex* x, floatComplex* y, int size) {
+void cexp10a(floatComplex* x, int size, floatComplex* y) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = cexp10s(x[i]);
diff --git a/src/elementaryFunctions/exp10/dexp10a.c b/src/elementaryFunctions/exp10/dexp10a.c
index c243508a..270abc53 100644
--- a/src/elementaryFunctions/exp10/dexp10a.c
+++ b/src/elementaryFunctions/exp10/dexp10a.c
@@ -5,14 +5,14 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Dec 7 14:54:56 2006 jofret
-** Last update Thu Sep 6 16:57:38 2007 bruno
+** Last update Mon Oct 22 09:53:56 2007 bruno
**
** Copyright INRIA 2006
*/
#include "exp10.h"
-void dexp10a(double* x, double* y, int size) {
+void dexp10a(double* x, int size, double* y) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = dexp10s(x[i]);
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]);
diff --git a/src/elementaryFunctions/exp10/zexp10a.c b/src/elementaryFunctions/exp10/zexp10a.c
index 7f2ae965..1ce8bb1c 100644
--- a/src/elementaryFunctions/exp10/zexp10a.c
+++ b/src/elementaryFunctions/exp10/zexp10a.c
@@ -5,14 +5,14 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Dec 7 16:12:02 2006 jofret
-** Last update Thu Sep 6 16:56:32 2007 bruno
+** Last update Mon Oct 22 09:53:37 2007 bruno
**
** Copyright INRIA 2006
*/
#include "exp10.h"
-void zexp10a(doubleComplex* x, doubleComplex* y, int size) {
+void zexp10a(doubleComplex* x, int size, doubleComplex* y) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = zexp10s(x[i]);