diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-04-25 11:49:52 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2012-02-23 18:41:51 +0000 |
commit | 396873b9c54d22ed0f6eda450924ffe69d807250 (patch) | |
tree | 78fd5b88aade8aa3a0f449f54f571f33466af27d | |
parent | 5c7c183026d6b44be1eefc2aac8a8ba5648ba27f (diff) |
Add needed #include <stdio.h>
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | main.cc | 2 | ||||
-rw-r--r-- | window/util.cc | 2 | ||||
-rw-r--r-- | window/wizard.cc | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -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" |