summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--src/communications.c2
-rw-r--r--src/events.c1
-rw-r--r--src/sbuf.c2
-rw-r--r--src/split.c1
5 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7dae830..076d713 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-02-19 Shawn Betts <sabetts@vcn.bc.ca>
+
+ * src/split.c: include string.h
+
+ * src/sbuf.c: likewise
+
+ * src/events.c: likewise
+
+ * src/communications.c: likewise
+
2002-02-17 Shawn Betts <sabetts@vcn.bc.ca>
* src/manage.c (update_normal_hints): fix debugging output to be
diff --git a/src/communications.c b/src/communications.c
index ee01205..9818ae6 100644
--- a/src/communications.c
+++ b/src/communications.c
@@ -25,6 +25,8 @@
#include <X11/Xatom.h>
#include <X11/Xproto.h>
+#include <string.h>
+
#include "ratpoison.h"
diff --git a/src/events.c b/src/events.c
index 88033e1..f759f35 100644
--- a/src/events.c
+++ b/src/events.c
@@ -27,6 +27,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <signal.h>
#include <errno.h>
#include <unistd.h>
diff --git a/src/sbuf.c b/src/sbuf.c
index f6313b2..2049dcc 100644
--- a/src/sbuf.c
+++ b/src/sbuf.c
@@ -19,6 +19,8 @@
* Boston, MA 02111-1307 USA
*/
+#include <string.h>
+
#include "ratpoison.h"
#include "sbuf.h"
diff --git a/src/split.c b/src/split.c
index 7c542d3..47efed3 100644
--- a/src/split.c
+++ b/src/split.c
@@ -22,6 +22,7 @@
*/
#include <unistd.h>
+#include <string.h>
#include "ratpoison.h"