dsdm: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / nsgmls / CodingSystem.C
index 56417b0b3dde0927abc83e3a02592c71e424d55c..b299164398454b60b7540c28ac341b91ad727b6a 100644 (file)
@@ -33,7 +33,7 @@
 #ifdef SP_SHORT_HEADERS
 #include <strstrea.h>
 #else
-#if defined(linux) || defined(CSRG_BASED) || defined(sun)
+#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) || defined(CSRG_BASED) || defined(sun)
+#if defined(__linux__) || defined(CSRG_BASED) || defined(sun)
   String<char> result(s, stream.pcount());
 #else
   String<char> result(s, stream.out_waiting());