aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-07 23:57:39 +0100
committerMax Kellermann <max@duempel.org>2014-01-07 23:57:39 +0100
commit3f3ae48ff40f1e15dcbebb2219d628069023810b (patch)
treeb995223f247074966541e085d7beecf5074ab7e6
parent27ca0db7a6143d2e479ff1ae52ec7c349ab1d4f2 (diff)
downloadmpd-3f3ae48ff40f1e15dcbebb2219d628069023810b.tar.gz
mpd-3f3ae48ff40f1e15dcbebb2219d628069023810b.tar.xz
mpd-3f3ae48ff40f1e15dcbebb2219d628069023810b.zip
test: add missing includes
-rw-r--r--test/dump_rva2.cxx1
-rw-r--r--test/read_conf.cxx2
-rw-r--r--test/read_tags.cxx1
-rw-r--r--test/run_encoder.cxx2
-rw-r--r--test/run_filter.cxx2
-rw-r--r--test/run_output.cxx1
-rw-r--r--test/run_resolver.cxx1
-rw-r--r--test/software_volume.cxx1
8 files changed, 11 insertions, 0 deletions
diff --git a/test/dump_rva2.cxx b/test/dump_rva2.cxx
index c1683c895..e79703e50 100644
--- a/test/dump_rva2.cxx
+++ b/test/dump_rva2.cxx
@@ -33,6 +33,7 @@
#endif
#include <stdlib.h>
+#include <stdio.h>
const char *
config_get_string(gcc_unused enum ConfigOption option,
diff --git a/test/read_conf.cxx b/test/read_conf.cxx
index 1f137e9a2..b27c70497 100644
--- a/test/read_conf.cxx
+++ b/test/read_conf.cxx
@@ -24,6 +24,8 @@
#include "Log.hxx"
#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
int main(int argc, char **argv)
{
diff --git a/test/read_tags.cxx b/test/read_tags.cxx
index d2cd162d2..49d40befb 100644
--- a/test/read_tags.cxx
+++ b/test/read_tags.cxx
@@ -37,6 +37,7 @@
#include <assert.h>
#include <unistd.h>
#include <stdlib.h>
+#include <stdio.h>
#ifdef HAVE_LOCALE_H
#include <locale.h>
diff --git a/test/run_encoder.cxx b/test/run_encoder.cxx
index 166af08ef..a71b815f5 100644
--- a/test/run_encoder.cxx
+++ b/test/run_encoder.cxx
@@ -27,6 +27,8 @@
#include "Log.hxx"
#include "stdbin.h"
+#include <stdio.h>
+#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
diff --git a/test/run_filter.cxx b/test/run_filter.cxx
index 6781700d8..3b5e803d7 100644
--- a/test/run_filter.cxx
+++ b/test/run_filter.cxx
@@ -36,6 +36,8 @@
#include <assert.h>
#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
#include <errno.h>
#include <unistd.h>
diff --git a/test/run_output.cxx b/test/run_output.cxx
index c7865bf2c..86c2452b9 100644
--- a/test/run_output.cxx
+++ b/test/run_output.cxx
@@ -44,6 +44,7 @@
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
+#include <stdio.h>
EventLoop *main_loop;
diff --git a/test/run_resolver.cxx b/test/run_resolver.cxx
index aba7238ec..7a0ea3b64 100644
--- a/test/run_resolver.cxx
+++ b/test/run_resolver.cxx
@@ -30,6 +30,7 @@
#include <netdb.h>
#endif
+#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
diff --git a/test/software_volume.cxx b/test/software_volume.cxx
index 1a336f2df..b10eabeb3 100644
--- a/test/software_volume.cxx
+++ b/test/software_volume.cxx
@@ -32,6 +32,7 @@
#include "stdbin.h"
#include "Log.hxx"
+#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>