diff options
author | siddhu8990 | 2015-11-28 11:21:19 +0530 |
---|---|---|
committer | siddhu8990 | 2015-11-28 11:21:19 +0530 |
commit | 21f458fb84f08fa6a76d07a45a66233ceac4d531 (patch) | |
tree | 15bd140609ad29472c816849bfc879ed05ac0d0c /src/c/operations/multiplication/dmuls.c | |
parent | 88c02bb9dad7d955676fe44f6595f996bde3f07e (diff) | |
parent | 342decd91b6c88fc1cc3bd1bf8983989122705f9 (diff) | |
download | Scilab2C_fossee_old-21f458fb84f08fa6a76d07a45a66233ceac4d531.tar.gz Scilab2C_fossee_old-21f458fb84f08fa6a76d07a45a66233ceac4d531.tar.bz2 Scilab2C_fossee_old-21f458fb84f08fa6a76d07a45a66233ceac4d531.zip |
Merge branch 'master' of https://github.com/siddhu8990/Scilab2C
Diffstat (limited to 'src/c/operations/multiplication/dmuls.c')
-rw-r--r-- | src/c/operations/multiplication/dmuls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/operations/multiplication/dmuls.c b/src/c/operations/multiplication/dmuls.c index 09e7fdf..ac21ace 100644 --- a/src/c/operations/multiplication/dmuls.c +++ b/src/c/operations/multiplication/dmuls.c @@ -13,6 +13,7 @@ #include "multiplication.h" -double dmuls(double in1, double in2){ +double dmuls(double in1, double in2) +{ return in1*in2; } |