diff options
author | jofret | 2007-03-19 10:25:46 +0000 |
---|---|---|
committer | jofret | 2007-03-19 10:25:46 +0000 |
commit | 3ea15624497bd4fefe69aa62adb03932d2733925 (patch) | |
tree | d3f351e4dc746d1694cb48dfabc342594957af01 /src/elementaryFunctions/acos/dacosa.c | |
parent | e99ac7b52a799d8f29b06afc888a360872226560 (diff) | |
download | scilab2c-3ea15624497bd4fefe69aa62adb03932d2733925.tar.gz scilab2c-3ea15624497bd4fefe69aa62adb03932d2733925.tar.bz2 scilab2c-3ea15624497bd4fefe69aa62adb03932d2733925.zip |
Modify prototyping :
StrideX and StrideY parameters are useless.
Removing them !
Diffstat (limited to 'src/elementaryFunctions/acos/dacosa.c')
-rw-r--r-- | src/elementaryFunctions/acos/dacosa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/acos/dacosa.c b/src/elementaryFunctions/acos/dacosa.c index a6d9e484..c5e291a7 100644 --- a/src/elementaryFunctions/acos/dacosa.c +++ b/src/elementaryFunctions/acos/dacosa.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Fri Jan 5 11:29:20 2007 jofret -** Last update Fri Feb 23 16:36:57 2007 jofret +** Last update Mon Mar 19 11:29:03 2007 jofret ** ** Copyright INRIA 2007 */ #include "acos.h" -void dacosa(double* x, int strideX, double* y, int strideY, int size) { +void dacosa(double* x, double* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = dacoss(x[i]); |