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/chol/schola.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/chol/schola.c')
-rw-r--r-- | src/c/matrixOperations/chol/schola.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/c/matrixOperations/chol/schola.c b/src/c/matrixOperations/chol/schola.c index 33d01066..cb394c35 100644 --- a/src/c/matrixOperations/chol/schola.c +++ b/src/c/matrixOperations/chol/schola.c @@ -10,15 +10,13 @@ * */ - +#include <stdlib.h> #ifndef WITHOUT_LAPACK #include "lapack.h" #else #include "sqrt.h" #endif #include "chol.h" -#include <malloc.h> -#include <stdio.h> void schola(float * in, int size, float *out){ /* param in : input matrix (square matrix) |