summaryrefslogtreecommitdiff
path: root/src/main.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/main.cc
parent74cfb1b4c115cdb4e05aa823b09d2b5ea9d0d690 (diff)
use the c++ std cheaders
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/main.cc b/src/main.cc
index 83cbf516..13047780 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -4,19 +4,9 @@
@brief Main entry point for the application
*/
-#ifdef HAVE_CONFIG_H
-# include "../config.h"
-#endif // HAVE_CONFIG_H
+#include "config.h"
extern "C" {
-#ifdef HAVE_LOCALE_H
-# include <locale.h>
-#endif // HAVE_LOCALE_H
-
-#ifdef HAVE_STDIO_H
-# include <stdio.h>
-#endif // HAVE_STDIO_H
-
#ifdef HAVE_UNISTD_H
# include <sys/types.h>
# include <unistd.h>
@@ -28,6 +18,9 @@ extern "C" {
#include "openbox.hh"
#include "otk/util.hh"
+#include <clocale>
+#include <cstdio>
+
int main(int argc, char **argv) {
// initialize the locale
if (!setlocale(LC_ALL, ""))