aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2009-10-01 06:41:04 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2009-10-01 06:41:04 (GMT)
commit078438e9933720f2e1e0a4bf060eff1fe94a703f (patch)
tree0b3882e6ea5d17a8ed53a1e262910638414bd65b /src/CurrentWindowCmd.cc
parent6c0739e8895c9b909e4d925f57c130b4db3e842e (diff)
downloadfluxbox-078438e9933720f2e1e0a4bf060eff1fe94a703f.zip
fluxbox-078438e9933720f2e1e0a4bf060eff1fe94a703f.tar.bz2
compile fix: missing headers (sun compiler complained about)
Diffstat (limited to 'src/CurrentWindowCmd.cc')
-rw-r--r--src/CurrentWindowCmd.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.cc b/src/CurrentWindowCmd.cc
index 2575a39..b73de01 100644
--- a/src/CurrentWindowCmd.cc
+++ b/src/CurrentWindowCmd.cc
@@ -36,6 +36,17 @@
36#include "FbTk/stringstream.hh" 36#include "FbTk/stringstream.hh"
37#include "FbTk/StringUtil.hh" 37#include "FbTk/StringUtil.hh"
38 38
39#ifdef HAVE_CONFIG_H
40#include "config.h"
41#endif // HAVE_CONFIG_H
42
43#ifdef HAVE_CSTDLIB
44#include <cstdlib>
45#else
46#include <stdlib.h>
47#endif
48
49
39using FbTk::Command; 50using FbTk::Command;
40 51
41namespace { 52namespace {