summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsc/source/rscpp/cpp3.c4
-rw-r--r--tools/source/stream/stream.cxx4
2 files changed, 2 insertions, 6 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c
index faf4ed07f658..04a7e4da3f85 100644
--- a/rsc/source/rscpp/cpp3.c
+++ b/rsc/source/rscpp/cpp3.c
@@ -170,7 +170,7 @@ void setincdirs()
* verwendete knallte es in strcpy() !
*/
-#if !defined( ZTC ) && !defined( WNT ) && !defined(BLC) && ! defined UNX && ! defined OS2
+#if !defined( ZTC ) && !defined( WNT ) && ! defined UNX && ! defined OS2
extern char *getenv( char *pStr ); /* BP */
#endif
char *pIncGetEnv = NULL; /* Pointer auf INCLUDE */
@@ -465,7 +465,7 @@ void initdefines()
int i;
time_t tvec;
-#if !defined( ZTC ) && !defined( WNT ) && !defined(BLC) && !defined(G3)
+#if !defined( ZTC ) && !defined( WNT ) && !defined(G3)
extern char *ctime();
#endif
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 191089bb4030..9f6480c16ce2 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -43,15 +43,11 @@
#include <tools/solar.h>
-#if defined(BLC)
-#define SWAPNIBBLES(c) c=_crotl(c,4);
-#else
#define SWAPNIBBLES(c) \
unsigned char nSwapTmp=c; \
nSwapTmp <<= 4; \
c >>= 4; \
c |= nSwapTmp;
-#endif
#include <tools/debug.hxx>
#define ENABLE_BYTESTRING_STREAM_OPERATORS