diff options
author | jofret | 2010-04-08 07:55:41 +0000 |
---|---|---|
committer | jofret | 2010-04-08 07:55:41 +0000 |
commit | 9961f0099d707a64c19cf32becd3f4786e39d034 (patch) | |
tree | f35479d64637609a289712bfbbdc94bb137b7494 /src/c/statisticsFunctions/meanf/cmeanfcs.c | |
parent | 035cc101ad97721fbcc2a29f295607be11268e03 (diff) | |
download | scilab2c-9961f0099d707a64c19cf32becd3f4786e39d034.tar.gz scilab2c-9961f0099d707a64c19cf32becd3f4786e39d034.tar.bz2 scilab2c-9961f0099d707a64c19cf32becd3f4786e39d034.zip |
Change malloc.h -> stdlib.h
Diffstat (limited to 'src/c/statisticsFunctions/meanf/cmeanfcs.c')
-rw-r--r-- | src/c/statisticsFunctions/meanf/cmeanfcs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/c/statisticsFunctions/meanf/cmeanfcs.c b/src/c/statisticsFunctions/meanf/cmeanfcs.c index 29b9f1bd..e0c769a3 100644 --- a/src/c/statisticsFunctions/meanf/cmeanfcs.c +++ b/src/c/statisticsFunctions/meanf/cmeanfcs.c @@ -10,10 +10,9 @@ * */ - +#include <stdlib.h> #include "meanf.h" #include "zeros.h" -#include <malloc.h> floatComplex cmeanfcs (floatComplex* in1 ,int lines , int columns , float* in2) { |