From b3f515b5066e90ae8a828e03ed2b26bdff8029c3 Mon Sep 17 00:00:00 2001
From: John Glover <j@johnglover.net>
Date: Sun, 14 Oct 2012 21:23:40 +0200
Subject: Add some includes that were needed to get simpl to build on CentOS
 6.3 (thanks to Ryan Wessels for pointing this out).

---
 src/simpl/base.h   | 3 +++
 src/sndobj/FFT.cpp | 1 +
 2 files changed, 4 insertions(+)

(limited to 'src')

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(){
-- 
cgit v1.2.3