diff options
author | jofret | 2010-04-08 07:55:58 +0000 |
---|---|---|
committer | jofret | 2010-04-08 07:55:58 +0000 |
commit | 79547bb0423190526c0a7e70bb0374b4c3ce2a98 (patch) | |
tree | b90249aac9716683a98e6708fd9cbdda32582c4e /src/c/matrixOperations/powm/dpowma.c | |
parent | 9961f0099d707a64c19cf32becd3f4786e39d034 (diff) | |
download | scilab2c-79547bb0423190526c0a7e70bb0374b4c3ce2a98.tar.gz scilab2c-79547bb0423190526c0a7e70bb0374b4c3ce2a98.tar.bz2 scilab2c-79547bb0423190526c0a7e70bb0374b4c3ce2a98.zip |
Change malloc.h -> stdlib.h
Diffstat (limited to 'src/c/matrixOperations/powm/dpowma.c')
-rw-r--r-- | src/c/matrixOperations/powm/dpowma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c/matrixOperations/powm/dpowma.c b/src/c/matrixOperations/powm/dpowma.c index 6b12a8f3..b38f9735 100644 --- a/src/c/matrixOperations/powm/dpowma.c +++ b/src/c/matrixOperations/powm/dpowma.c @@ -9,7 +9,8 @@ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt * */ -#include <malloc.h> + +#include <stdlib.h> #include "matrixPow.h" #include "spec.h" #include "pow.h" @@ -18,7 +19,6 @@ #include "zeros.h" #include "matrixInversion.h" #include "matrixMultiplication.h" -#include <stdio.h> void dpowma(double* in, int rows, double power, double* out){ int i=0, j=0; |