summaryrefslogtreecommitdiff
path: root/src/screen.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-09 23:07:54 +0000
committerDana Jansens <danakj@orodu.net>2003-02-09 23:07:54 +0000
commit115fedf432d73f17ade48eaa2fa12dfd333bfcaa (patch)
tree9cc7cce7b1f627457813d5d9dbf7b121164a0446 /src/screen.cc
parent74cfb1b4c115cdb4e05aa823b09d2b5ea9d0d690 (diff)
use the c++ std cheaders
Diffstat (limited to 'src/screen.cc')
-rw-r--r--src/screen.cc14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/screen.cc b/src/screen.cc
index 4878d7b6..024c5094 100644
--- a/src/screen.cc
+++ b/src/screen.cc
@@ -1,18 +1,8 @@
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-#ifdef HAVE_CONFIG_H
-# include "../config.h"
-#endif
+#include "config.h"
extern "C" {
-#ifdef HAVE_STDIO_H
-# include <stdio.h>
-#endif // HAVE_STDIO_H
-
-#ifdef HAVE_STRING_H
-# include <string.h>
-#endif // HAVE_STRING_H
-
#ifdef HAVE_UNISTD_H
# include <sys/types.h>
# include <unistd.h>
@@ -33,6 +23,8 @@ extern "C" {
#include <vector>
#include <algorithm>
+#include <cstdio>
+#include <cstring>
static bool running;
static int anotherWMRunning(Display *display, XErrorEvent *) {