diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-04-03 20:59:42 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-04-03 20:59:42 +0000 |
commit | 02374f1e134f85d16e9d46f89f251303a4a10259 (patch) | |
tree | d3e00e3d6c91e61d5b4abb8055f500de448dc0f4 | |
parent | 8bbda088b6be12a1c8633a05f2c3edee28c3b493 (diff) |
found some hidden classes and made them build as single-file-single-class; got rid of some warnings
svn path=/trunk/externals/cxc/; revision=7546
-rw-r--r-- | cxavgdev.c | 1 | ||||
-rw-r--r-- | cxmean.c | 1 | ||||
-rw-r--r-- | cxstddev.c | 1 | ||||
-rw-r--r-- | mean~.c | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/cxavgdev.c b/cxavgdev.c new file mode 100644 index 0000000..ad433c0 --- /dev/null +++ b/cxavgdev.c @@ -0,0 +1 @@ +#include "mean~.c" diff --git a/cxmean.c b/cxmean.c new file mode 100644 index 0000000..ad433c0 --- /dev/null +++ b/cxmean.c @@ -0,0 +1 @@ +#include "mean~.c" diff --git a/cxstddev.c b/cxstddev.c new file mode 100644 index 0000000..ad433c0 --- /dev/null +++ b/cxstddev.c @@ -0,0 +1 @@ +#include "mean~.c" @@ -7,7 +7,7 @@ #include "m_pd.h" #include <math.h> -//#include <stdlib.h> +#include <stdlib.h> /* cx.mean: calculate the mean from a table */ |