From e3724c71f70b0349950996d30575f155e9deb3a9 Mon Sep 17 00:00:00 2001 From: jofret Date: Fri, 16 Jul 2010 22:47:53 +0000 Subject: Correct FIND function prototypes --- src/c/auxiliaryFunctions/includes/find.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/c/auxiliaryFunctions/includes/find.h') 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" */ -- cgit