diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-27 12:33:30 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-31 17:18:28 +0900 |
| commit | 029634c0fd165e2e5b8afc178c50781fc3a90032 (patch) | |
| tree | 530f3f7d41acd7fa4d0bbe9b47c90e6a60dd2d4a /tdeprint/fooparser.cpp | |
| parent | fcbf2cd71b862375bbb287ee720e068feeff1823 (diff) | |
| download | tdelibs-029634c0fd165e2e5b8afc178c50781fc3a90032.tar.gz tdelibs-029634c0fd165e2e5b8afc178c50781fc3a90032.zip | |
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 638f63d207a9a925df17fda588436fa6530a3d85)
Diffstat (limited to 'tdeprint/fooparser.cpp')
| -rw-r--r-- | tdeprint/fooparser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeprint/fooparser.cpp b/tdeprint/fooparser.cpp index 2f1a59e0f..55e68532b 100644 --- a/tdeprint/fooparser.cpp +++ b/tdeprint/fooparser.cpp @@ -227,19 +227,19 @@ static const short yycheck[] = { 4, /* We think this test detects Watcom and Microsoft C. */ /* This used to test MSDOS, but that is a bad idea since that symbol is in the user namespace. */ -#if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__) +#if defined (_MSDOS) || defined (_MSDOS_) #if 0 /* No need for malloc.h, which pollutes the namespace; instead, just don't use alloca. */ #include <malloc.h> #endif -#else /* not MSDOS, or __TURBOC__ */ +#else /* not MSDOS */ #if defined(_AIX) /* I don't know what this was needed for, but it pollutes the namespace. So I turned it off. rms, 2 May 1997. */ /* #include <malloc.h> */ #pragma alloca #define YYSTACK_USE_ALLOCA -#else /* not MSDOS, or __TURBOC__, or _AIX */ +#else /* not MSDOS or _AIX */ #if 0 #ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up, and on HPUX 10. Eventually we can turn this on. */ @@ -248,7 +248,7 @@ static const short yycheck[] = { 4, #endif /* __hpux */ #endif #endif /* not _AIX */ -#endif /* not MSDOS, or __TURBOC__ */ +#endif /* not MSDOS */ #endif /* not sparc */ #endif /* not GNU C */ #endif /* alloca not defined */ |
