diff options
author | Siddhesh Wani | 2015-08-04 14:36:45 +0530 |
---|---|---|
committer | Siddhesh Wani | 2015-08-04 14:36:45 +0530 |
commit | 14496b5b41e6d2e7323d9c5e860e6b56e385a062 (patch) | |
tree | ae8aee38b5837909006f9b31e46d91d3e5331cf7 /includes | |
parent | f39c271ca3fbf737612350a7f1c6af7e2c7022f9 (diff) | |
download | scilab2c-14496b5b41e6d2e7323d9c5e860e6b56e385a062.tar.gz scilab2c-14496b5b41e6d2e7323d9c5e860e6b56e385a062.tar.bz2 scilab2c-14496b5b41e6d2e7323d9c5e860e6b56e385a062.zip |
Tested Addition and Subtraction for new data types
Diffstat (limited to 'includes')
-rw-r--r-- | includes/sci2clib.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/includes/sci2clib.h b/includes/sci2clib.h index 3154ac39..eac578fa 100644 --- a/includes/sci2clib.h +++ b/includes/sci2clib.h @@ -174,6 +174,19 @@ /* interfacing tanh */ #include "tanh.h" #include "int_tanh.h" +/* interfacing uint8 */ +#include "uint8.h" +#include "int_uint8.h" +/* interfacing int8 */ +#include "int8.h" +#include "int_int8.h" +/* interfacing uint16 */ +#include "uint16.h" +#include "int_uint16.h" +/* interfacing int16 */ +#include "int16.h" +#include "int_int16.h" + /* IMPLICIT LISTS */ /* interfacing implicitList/OpColon */ |