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/logm/clogma.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/logm/clogma.c')
-rw-r--r-- | src/c/matrixOperations/logm/clogma.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/c/matrixOperations/logm/clogma.c b/src/c/matrixOperations/logm/clogma.c index a5e253fb..16c1bb4b 100644 --- a/src/c/matrixOperations/logm/clogma.c +++ b/src/c/matrixOperations/logm/clogma.c @@ -10,11 +10,9 @@ * */ - -#include <malloc.h> +#include <stdlib.h> #include "logm.h" - void clogma (floatComplex* in, int rows, floatComplex* out){ doubleComplex *inCopy, *outCopy; int i=0; |