summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/includes/cosh.h
diff options
context:
space:
mode:
authorsiddhu89902015-09-07 21:27:00 +0530
committersiddhu89902015-09-07 21:27:00 +0530
commit4aabac04457969b9288f1d49292ab758ece2448f (patch)
tree6b2f249b2df41bdb3862dcc7a571afdab7fdfe85 /2.3-1/src/c/elementaryFunctions/includes/cosh.h
parent5675f7cd91515d5e88fd151943c3ec5cde57ceaa (diff)
downloadScilab2C-4aabac04457969b9288f1d49292ab758ece2448f.tar.gz
Scilab2C-4aabac04457969b9288f1d49292ab758ece2448f.tar.bz2
Scilab2C-4aabac04457969b9288f1d49292ab758ece2448f.zip
Changes made for arduino support
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/includes/cosh.h')
-rw-r--r--2.3-1/src/c/elementaryFunctions/includes/cosh.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/includes/cosh.h b/2.3-1/src/c/elementaryFunctions/includes/cosh.h
index e084e427..5c7c8b71 100644
--- a/2.3-1/src/c/elementaryFunctions/includes/cosh.h
+++ b/2.3-1/src/c/elementaryFunctions/includes/cosh.h
@@ -112,7 +112,7 @@ EXTERN_ELEMFUNCT void zcosha(doubleComplex* in, int size, doubleComplex* out);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-EXTERN_ELEMFUNCT void u8cosha(uint8* in, int size, float* out);
+EXTERN_ELEMFUNCT void u8cosha(uint8* in, int size, uint8* out);
/*
** \brief Int8 Matrix Cosine function
@@ -120,7 +120,7 @@ EXTERN_ELEMFUNCT void u8cosha(uint8* in, int size, float* out);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-EXTERN_ELEMFUNCT void i8cosha(int8* in, int size, float* out);
+EXTERN_ELEMFUNCT void i8cosha(int8* in, int size, int8* out);
/*
** \brief Uint16 Matrix Cosine function
@@ -128,7 +128,7 @@ EXTERN_ELEMFUNCT void i8cosha(int8* in, int size, float* out);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-EXTERN_ELEMFUNCT void u16cosha(uint16* in, int size, float* out);
+EXTERN_ELEMFUNCT void u16cosha(uint16* in, int size, uint16* out);
/*
** \brief Int16 Matrix Cosine function
@@ -136,7 +136,7 @@ EXTERN_ELEMFUNCT void u16cosha(uint16* in, int size, float* out);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-EXTERN_ELEMFUNCT void i16cosha(int16* in, int size, float* out);
+EXTERN_ELEMFUNCT void i16cosha(int16* in, int size, int16* out);
#ifdef __cplusplus