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/tan/stana.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/tan/stana.c')
-rw-r--r-- | src/elementaryFunctions/tan/stana.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/tan/stana.c b/src/elementaryFunctions/tan/stana.c index 6b061ed4..abb2cd86 100644 --- a/src/elementaryFunctions/tan/stana.c +++ b/src/elementaryFunctions/tan/stana.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 Fri Feb 23 17:25:29 2007 jofret +** Last update Mon Mar 19 11:33:11 2007 jofret ** ** Copyright INRIA 2006 */ #include "tan.h" -void stana(float* x, int strideX, float* y, int strideY, int size) { +void stana(float* x, float* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = stans(x[i]); |