summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2011-04-25 11:49:52 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2012-02-23 18:41:51 +0000
commit396873b9c54d22ed0f6eda450924ffe69d807250 (patch)
tree78fd5b88aade8aa3a0f449f54f571f33466af27d
parent5c7c183026d6b44be1eefc2aac8a8ba5648ba27f (diff)
Add needed #include <stdio.h>
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r--main.cc2
-rw-r--r--window/util.cc2
-rw-r--r--window/wizard.cc2
3 files changed, 5 insertions, 1 deletions
diff --git a/main.cc b/main.cc
index 57309b6..7657082 100644
--- a/main.cc
+++ b/main.cc
@@ -29,7 +29,7 @@
#include "config.h"
#include <prsht.h>
#include <commctrl.h>
-
+#include <stdio.h>
#include <stdexcept>
#include <X11/Xlib.h>
diff --git a/window/util.cc b/window/util.cc
index 884690f..60e8277 100644
--- a/window/util.cc
+++ b/window/util.cc
@@ -23,6 +23,8 @@
* holders shall not be used in advertising or otherwise to promote the sale,
* use or other dealings in this Software without prior written authorization.
*/
+
+#include <stdio.h>
#include "util.h"
std::string win32_error::message(DWORD errorcode)
diff --git a/window/wizard.cc b/window/wizard.cc
index 08d5a95..fdb1f7d 100644
--- a/window/wizard.cc
+++ b/window/wizard.cc
@@ -23,6 +23,8 @@
* holders shall not be used in advertising or otherwise to promote the sale,
* use or other dealings in this Software without prior written authorization.
*/
+
+#include <stdio.h>
#include "wizard.h"
#include "util.h"