foxygit / doom Log in
commit 59864df095516a0e6a1fecb5a6abfeedc1e56188
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Tue May 23 11:46:09 2006 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Tue May 23 11:46:09 2006 +0000

    Fix compiler warnings caused by missing includes.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 517
---
 textscreen/txt_button.c        | 1 +
 textscreen/txt_checkbox.c      | 1 +
 textscreen/txt_label.c         | 1 +
 textscreen/txt_radiobutton.c   | 1 +
 textscreen/txt_separator.c     | 1 +
 textscreen/txt_window_action.c | 1 +
 6 files changed, 6 insertions(+)

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"