diff options
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r-- | src/Workspace.cc | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc index 18a2ba5..cafdb0c 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Workspace.cc,v 1.98 2004/06/21 09:53:01 rathnor Exp $ | 25 | // $Id: Workspace.cc,v 1.99 2004/08/31 15:26:39 rathnor Exp $ |
26 | 26 | ||
27 | #include "Workspace.hh" | 27 | #include "Workspace.hh" |
28 | 28 | ||
@@ -48,8 +48,16 @@ | |||
48 | #include <X11/Xlib.h> | 48 | #include <X11/Xlib.h> |
49 | #include <X11/Xatom.h> | 49 | #include <X11/Xatom.h> |
50 | 50 | ||
51 | #include <cstdio> | 51 | #ifdef HAVE_CSTDIO |
52 | #include <cstring> | 52 | #include <cstdio> |
53 | #else | ||
54 | #include <stdio.h> | ||
55 | #endif | ||
56 | #ifdef HAVE_CSTRING | ||
57 | #include <cstring> | ||
58 | #else | ||
59 | #include <string.h> | ||
60 | #endif | ||
53 | 61 | ||
54 | #include <algorithm> | 62 | #include <algorithm> |
55 | #include <iostream> | 63 | #include <iostream> |