summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2006-05-23 11:46:09 +0000
committerSimon Howard2006-05-23 11:46:09 +0000
commit59864df095516a0e6a1fecb5a6abfeedc1e56188 (patch)
treec1c3389f5085fdfe0b37e14357c027b3fdcefd0b
parenta27b3c92870be04d2ea919ca9a510931d96619b6 (diff)
downloadchocolate-doom-59864df095516a0e6a1fecb5a6abfeedc1e56188.tar.gz
chocolate-doom-59864df095516a0e6a1fecb5a6abfeedc1e56188.tar.bz2
chocolate-doom-59864df095516a0e6a1fecb5a6abfeedc1e56188.zip
Fix compiler warnings caused by missing includes.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 517
-rw-r--r--textscreen/txt_button.c1
-rw-r--r--textscreen/txt_checkbox.c1
-rw-r--r--textscreen/txt_label.c1
-rw-r--r--textscreen/txt_radiobutton.c1
-rw-r--r--textscreen/txt_separator.c1
-rw-r--r--textscreen/txt_window_action.c1
6 files changed, 6 insertions, 0 deletions
diff --git a/textscreen/txt_button.c b/textscreen/txt_button.c
index 12ec9433..53021a75 100644
--- a/textscreen/txt_button.c
+++ b/textscreen/txt_button.c
@@ -1,4 +1,5 @@
+#include <stdlib.h>
#include <string.h>
#include "doomkeys.h"
diff --git a/textscreen/txt_checkbox.c b/textscreen/txt_checkbox.c
index e2089a3e..4419c4b3 100644
--- a/textscreen/txt_checkbox.c
+++ b/textscreen/txt_checkbox.c
@@ -1,4 +1,5 @@
+#include <stdlib.h>
#include <string.h>
#include "doomkeys.h"
diff --git a/textscreen/txt_label.c b/textscreen/txt_label.c
index 32610f9e..a6ac8293 100644
--- a/textscreen/txt_label.c
+++ b/textscreen/txt_label.c
@@ -1,4 +1,5 @@
+#include <stdlib.h>
#include <string.h>
#include "txt_label.h"
diff --git a/textscreen/txt_radiobutton.c b/textscreen/txt_radiobutton.c
index 58406b9d..e221896e 100644
--- a/textscreen/txt_radiobutton.c
+++ b/textscreen/txt_radiobutton.c
@@ -1,4 +1,5 @@
+#include <stdlib.h>
#include <string.h>
#include "doomkeys.h"
diff --git a/textscreen/txt_separator.c b/textscreen/txt_separator.c
index 2b72aa1e..3258c400 100644
--- a/textscreen/txt_separator.c
+++ b/textscreen/txt_separator.c
@@ -1,4 +1,5 @@
+#include <stdlib.h>
#include <string.h>
#include "txt_separator.h"
diff --git a/textscreen/txt_window_action.c b/textscreen/txt_window_action.c
index 072a87c5..2cffb8a6 100644
--- a/textscreen/txt_window_action.c
+++ b/textscreen/txt_window_action.c
@@ -1,4 +1,5 @@
+#include <stdlib.h>
#include <string.h>
#include "doomkeys.h"