summaryrefslogtreecommitdiff
path: root/src/c/auxiliaryFunctions/includes/find.h
diff options
context:
space:
mode:
authorjofret2010-07-16 22:47:53 +0000
committerjofret2010-07-16 22:47:53 +0000
commite3724c71f70b0349950996d30575f155e9deb3a9 (patch)
tree9dd35d6a7831a3be3d25a5e06fc8f21152871e55 /src/c/auxiliaryFunctions/includes/find.h
parent63c58ca04a24d7016b5301d28193895272e61799 (diff)
downloadscilab2c-e3724c71f70b0349950996d30575f155e9deb3a9.tar.gz
scilab2c-e3724c71f70b0349950996d30575f155e9deb3a9.tar.bz2
scilab2c-e3724c71f70b0349950996d30575f155e9deb3a9.zip
Correct FIND function prototypes
Diffstat (limited to 'src/c/auxiliaryFunctions/includes/find.h')
-rw-r--r--src/c/auxiliaryFunctions/includes/find.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/c/auxiliaryFunctions/includes/find.h b/src/c/auxiliaryFunctions/includes/find.h
index 7cc876e9..3104e957 100644
--- a/src/c/auxiliaryFunctions/includes/find.h
+++ b/src/c/auxiliaryFunctions/includes/find.h
@@ -24,25 +24,25 @@ extern "C" {
** \brief Float Find function
** max is an integer giving the maximum number of indices to return. (use -1 to search them all)
*/
-EXTERN_AUXFUNCT void sfinda(float* x, int size, float *out, int *sizeOut,int max);
+EXTERN_AUXFUNCT void sfinda(float* x, int size, float *out, int max);
/*
** \brief Double Find function
** max is an integer giving the maximum number of indices to return. (use -1 to search them all)
*/
-EXTERN_AUXFUNCT void dfinda(double*x, int size, double *out, int *sizeOut,int max);
+EXTERN_AUXFUNCT void dfinda(double*x, int size, double *out, int max);
/*
** \brief Float Complex Find function
** max is an integer giving the maximum number of indices to return. (use -1 to search them all)
*/
-EXTERN_AUXFUNCT void cfinda(floatComplex* z, int size, float *out, int *sizeOut,int max);
+EXTERN_AUXFUNCT void cfinda(floatComplex* z, int size, float *out, int max);
/*
** \brief Double Complex Find function
** max is an integer giving the maximum number of indices to return. (use -1 to search them all)
*/
-EXTERN_AUXFUNCT void zfinda(doubleComplex* z, int size, double *out, int *sizeOut,int max);
+EXTERN_AUXFUNCT void zfinda(doubleComplex* z, int size, double *out, int max);
#ifdef __cplusplus
} /* extern "C" */