summaryrefslogtreecommitdiff
path: root/src/FbTk/StringUtil.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-08-31 15:26:40 (GMT)
committerrathnor <rathnor>2004-08-31 15:26:40 (GMT)
commitd17bf39a43a7581773c67d496e4022499d59cd26 (patch)
tree89e964e0e9a207d726e4ffefb88b19c51c591817 /src/FbTk/StringUtil.cc
parent6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff)
downloadfluxbox_lack-d17bf39a43a7581773c67d496e4022499d59cd26.zip
fluxbox_lack-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2
add autoconf check for std c++ headers
Diffstat (limited to 'src/FbTk/StringUtil.cc')
-rw-r--r--src/FbTk/StringUtil.cc26
1 files changed, 21 insertions, 5 deletions
diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc
index 92d9eb3..92246e3 100644
--- a/src/FbTk/StringUtil.cc
+++ b/src/FbTk/StringUtil.cc
@@ -19,15 +19,31 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: StringUtil.cc,v 1.11 2004/05/02 20:42:56 fluxgen Exp $ 22// $Id: StringUtil.cc,v 1.12 2004/08/31 15:26:39 rathnor Exp $
23 23
24#include "StringUtil.hh" 24#include "StringUtil.hh"
25 25
26#include <string> 26#include <string>
27#include <cstdio> 27#ifdef HAVE_CSTDIO
28#include <cstdlib> 28 #include <cstdio>
29#include <cctype> 29#else
30#include <cassert> 30 #include <stdio.h>
31#endif
32#ifdef HAVE_CSTDLIB
33 #include <cstdlib>
34#else
35 #include <stdlib.h>
36#endif
37#ifdef HAVE_CCTYPE
38 #include <cctype>
39#else
40 #include <ctype.h>
41#endif
42#ifdef HAVE_CASSERT
43 #include <cassert>
44#else
45 #include <assert.h>
46#endif
31#include <memory> 47#include <memory>
32#include <algorithm> 48#include <algorithm>
33 49