From 9e6d3856142e1ba22d8ecf0c6dcb7e8816c5436a Mon Sep 17 00:00:00 2001 From: obrien Date: Fri, 1 Dec 2000 12:29:00 +0000 Subject: Fix a "#ifdef" where a comparison operator was used. GCC 2.96 does not like this. --- bin/csh/config.h | 2 +- bin/csh/config_p.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/csh/config.h b/bin/csh/config.h index 836e5d4..76064f9 100644 --- a/bin/csh/config.h +++ b/bin/csh/config.h @@ -135,7 +135,7 @@ /* * _PATH_TCSHELL if you've change the installation location (vix) */ -# ifdef _BSDI_VERSION >= 199701 +# if _BSDI_VERSION >= 199701 # define _PATH_TCSHELL "/bin/tcsh" /* # undef SYSMALLOC */ # define SYSMALLOC diff --git a/bin/csh/config_p.h b/bin/csh/config_p.h index 836e5d4..76064f9 100644 --- a/bin/csh/config_p.h +++ b/bin/csh/config_p.h @@ -135,7 +135,7 @@ /* * _PATH_TCSHELL if you've change the installation location (vix) */ -# ifdef _BSDI_VERSION >= 199701 +# if _BSDI_VERSION >= 199701 # define _PATH_TCSHELL "/bin/tcsh" /* # undef SYSMALLOC */ # define SYSMALLOC -- cgit v1.1