]> git.mxchange.org Git - simgear.git/blobdiff - Misc/strutils.hxx
Tweak for SGI portability.
[simgear.git] / Misc / strutils.hxx
index 1dba49e30411f0dff7e950cb408972352726fb78..2cf7c53e970e317d1d6205e3f7bf1cbcf6f38a0c 100644 (file)
 #define STRUTILS_H
 
 #include <string>
-#include <cstdlib>
+// #include <cstdlib>
+#include <stdlib.h>
+
+#include "Include/fg_stl_config.h"
+FG_USING_NAMESPACE(std);
 
 // Default characters to remove.
-const string whitespace = " \n\r\t";
+extern const string whitespace;
 
 // Returns a string with trailing characters removed.
 string trimleft( const string& s, const string& trimmings = whitespace );
@@ -56,6 +60,12 @@ atoi( const string& str )
 #endif // STRUTILS_H
 
 // $Log$
+// Revision 1.3  1998/10/16 00:50:57  curt
+// Remove leading _ from a couple defines.
+//
+// Revision 1.2  1998/10/13 00:10:07  curt
+// More portability changes to help with windoze compilation problems.
+//
 // Revision 1.1  1998/09/01 19:06:31  curt
 // Initial revision.
 //