summaryrefslogtreecommitdiff
path: root/2.3-1
diff options
context:
space:
mode:
authorimushir2015-11-27 15:37:10 +0530
committerimushir2015-11-27 15:37:10 +0530
commit7dd7e71d8696214facf9f9befe79164d11401f4f (patch)
treef56f81598eb4530bb1db041a786997f3b9c95c7d /2.3-1
parentdec7e49772abc6230ec02e0c5e9f9ac8d24f1cec (diff)
downloadScilab2C-7dd7e71d8696214facf9f9befe79164d11401f4f.tar.gz
Scilab2C-7dd7e71d8696214facf9f9befe79164d11401f4f.tar.bz2
Scilab2C-7dd7e71d8696214facf9f9befe79164d11401f4f.zip
#define for u8 u16 i8 i16 added
Diffstat (limited to '2.3-1')
-rw-r--r--2.3-1/src/c/elementaryFunctions/includes/sqrt.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/includes/sqrt.h b/2.3-1/src/c/elementaryFunctions/includes/sqrt.h
index 7885c9c2..df11b20e 100644
--- a/2.3-1/src/c/elementaryFunctions/includes/sqrt.h
+++ b/2.3-1/src/c/elementaryFunctions/includes/sqrt.h
@@ -16,6 +16,7 @@
#include "dynlib_elementaryfunctions.h"
#include "floatComplex.h"
#include "doubleComplex.h"
+#include "types.h"
#ifdef __cplusplus
extern "C" {
@@ -48,13 +49,14 @@ EXTERN_ELEMFUNCT floatComplex csqrts(floatComplex in);
*/
EXTERN_ELEMFUNCT doubleComplex zsqrts(doubleComplex in);
+
/*
** \brief Float Matrix Square Root function
** \param in : input array value.
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-EXTERN_ELEMFUNCT void ssqrta(float* in, int size, float* out);
+EXTERN_ELEMFUNCT void ssqrta(float* in, int size, float* out);
/*
** \brief Double Matrix Square Root function
@@ -80,6 +82,10 @@ EXTERN_ELEMFUNCT void csqrta(floatComplex* in, int size, floatComplex* out);
*/
EXTERN_ELEMFUNCT void zsqrta(doubleComplex* in, int size, doubleComplex* out);
+
+
+
+
#ifdef __cplusplus
} /* extern "C" */
#endif