summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-10-14 21:23:40 +0200
committerJohn Glover <j@johnglover.net>2012-10-14 21:23:40 +0200
commitb3f515b5066e90ae8a828e03ed2b26bdff8029c3 (patch)
tree97d7e1eb50efd78987847f587d15bb1c53b26463 /src
parent554309b2fc6a90b0f59ecb5dd4923c97c150ea36 (diff)
downloadsimpl-b3f515b5066e90ae8a828e03ed2b26bdff8029c3.tar.gz
simpl-b3f515b5066e90ae8a828e03ed2b26bdff8029c3.tar.bz2
simpl-b3f515b5066e90ae8a828e03ed2b26bdff8029c3.zip
Add some includes that were needed to get simpl
to build on CentOS 6.3 (thanks to Ryan Wessels for pointing this out).
Diffstat (limited to 'src')
-rw-r--r--src/simpl/base.h3
-rw-r--r--src/sndobj/FFT.cpp1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/simpl/base.h b/src/simpl/base.h
index cfa139c..106cbb4 100644
--- a/src/simpl/base.h
+++ b/src/simpl/base.h
@@ -1,6 +1,9 @@
#ifndef BASE_H
#define BASE_H
+#include "string.h"
+#include "stdio.h"
+
#include <vector>
#include <string>
diff --git a/src/sndobj/FFT.cpp b/src/sndobj/FFT.cpp
index eda4847..666fe88 100644
--- a/src/sndobj/FFT.cpp
+++ b/src/sndobj/FFT.cpp
@@ -24,6 +24,7 @@
// short-time fast fourier transform
// Victor Lazzarini, 2003
/////////////////////////////////////////////////
+#include "stdlib.h"
#include "FFT.h"
FFT::FFT(){