summaryrefslogtreecommitdiff
path: root/src/Ewmh.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ewmh.cc')
-rw-r--r--src/Ewmh.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc
index 4062595..fb1b832 100644
--- a/src/Ewmh.cc
+++ b/src/Ewmh.cc
@@ -39,15 +39,24 @@
39 39
40#include <X11/Xproto.h> 40#include <X11/Xproto.h>
41#include <X11/Xatom.h> 41#include <X11/Xatom.h>
42
42#include <iostream> 43#include <iostream>
43#include <algorithm> 44#include <algorithm>
44#include <new> 45#include <new>
46
45#ifdef HAVE_CSTRING 47#ifdef HAVE_CSTRING
46 #include <cstring> 48 #include <cstring>
47#else 49#else
48 #include <string.h> 50 #include <string.h>
49#endif 51#endif
50 52
53#ifdef HAVE_CSTDLIB
54 #include <cstdlib>
55#else
56 #include <stdlib.h>
57#endif
58
59
51using std::cerr; 60using std::cerr;
52using std::endl; 61using std::endl;
53using std::vector; 62using std::vector;