diff options
Diffstat (limited to 'src/WindowState.cc')
-rw-r--r-- | src/WindowState.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/WindowState.cc b/src/WindowState.cc index 1b8647a..d062907 100644 --- a/src/WindowState.cc +++ b/src/WindowState.cc | |||
@@ -23,7 +23,16 @@ | |||
23 | 23 | ||
24 | #include "FbTk/StringUtil.hh" | 24 | #include "FbTk/StringUtil.hh" |
25 | 25 | ||
26 | #include <cstdlib> | 26 | #ifdef HAVE_CONFIG_H |
27 | #include "config.h" | ||
28 | #endif // HAVE_CONFIG_H | ||
29 | |||
30 | #ifdef HAVE_CSTDLIB | ||
31 | #include <cstdlib> | ||
32 | #else | ||
33 | #include <stdlib.h> | ||
34 | #endif | ||
35 | |||
27 | #include <errno.h> | 36 | #include <errno.h> |
28 | 37 | ||
29 | bool WindowState::useBorder() const { | 38 | bool WindowState::useBorder() const { |