aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authormarkt <markt>2007-06-29 17:33:28 (GMT)
committermarkt <markt>2007-06-29 17:33:28 (GMT)
commit424c113f236b5b5635aa023bf9758463fbef44d0 (patch)
tree538fa32fe957237fb05df87fcbf124a9d87f6910 /util
parent4def8fad56d9503b5388678dbd721e4b7ed5c254 (diff)
downloadfluxbox-424c113f236b5b5635aa023bf9758463fbef44d0.zip
fluxbox-424c113f236b5b5635aa023bf9758463fbef44d0.tar.bz2
updates for compiling with gcc 4.3
Diffstat (limited to 'util')
-rw-r--r--util/fbrun/main.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/util/fbrun/main.cc b/util/fbrun/main.cc
index e5d3e2f..86003ab 100644
--- a/util/fbrun/main.cc
+++ b/util/fbrun/main.cc
@@ -34,6 +34,16 @@ extern "C" {
34 34
35#include <string> 35#include <string>
36#include <iostream> 36#include <iostream>
37#ifdef HAVE_CSTRING
38 #include <cstring>
39#else
40 #include <string.h>
41#endif
42#ifdef HAVE_CSTDLIB
43 #include <cstdlib>
44#else
45 #include <stdlib.h>
46#endif
37 47
38using std::cerr; 48using std::cerr;
39using std::endl; 49using std::endl;