dsdm: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / nsgmls / CodingSystem.C
index ad7935a76b149d736cb3020faf0092c5348cae4d..b299164398454b60b7540c28ac341b91ad727b6a 100644 (file)
@@ -16,7 +16,7 @@
  * details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with these librararies and programs; if not, write
+ * License along with these libraries and programs; if not, write
  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  * Floor, Boston, MA 02110-1301 USA
  */
@@ -33,7 +33,7 @@
 #ifdef SP_SHORT_HEADERS
 #include <strstrea.h>
 #else
-#if defined(linux)
+#if defined(__linux__) || defined(CSRG_BASED) || defined(sun)
 #include <strstream>
 #else
 #include <strstream.h>
@@ -82,7 +82,7 @@ String<char> OutputCodingSystem::convertOut(const StringC &str) const
   encoder->output(copy.data(), copy.size(), &stream);
   delete encoder;
   char *s = stream.str();
-#if defined(linux)
+#if defined(__linux__) || defined(CSRG_BASED) || defined(sun)
   String<char> result(s, stream.pcount());
 #else
   String<char> result(s, stream.out_waiting());