aboutsummaryrefslogtreecommitdiff
path: root/src/Xutil.cc
diff options
context:
space:
mode:
authormarkt <markt>2007-06-29 17:25:24 (GMT)
committermarkt <markt>2007-06-29 17:25:24 (GMT)
commit329fca30fdbbc051a733c6d15efa6b95370ac221 (patch)
tree4090f3986160129efdb9f97a000efdbee44804bc /src/Xutil.cc
parent35251ef5c9bcf12abeee3e9b69a0ef85df3319dc (diff)
downloadfluxbox-329fca30fdbbc051a733c6d15efa6b95370ac221.zip
fluxbox-329fca30fdbbc051a733c6d15efa6b95370ac221.tar.bz2
updates for compiling with gcc 4.3
Diffstat (limited to 'src/Xutil.cc')
-rw-r--r--src/Xutil.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Xutil.cc b/src/Xutil.cc
index c138142..c2fb71f 100644
--- a/src/Xutil.cc
+++ b/src/Xutil.cc
@@ -32,6 +32,11 @@
32#include <X11/Xatom.h> 32#include <X11/Xatom.h>
33#include <X11/Xlib.h> 33#include <X11/Xlib.h>
34#include <iostream> 34#include <iostream>
35#ifdef HAVE_CSTRING
36 #include <cstring>
37#else
38 #include <string.h>
39#endif
35 40
36using std::string; 41using std::string;
37 42