diff options
author | obrien <obrien@FreeBSD.org> | 2000-12-01 12:29:00 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-12-01 12:29:00 +0000 |
commit | 9e6d3856142e1ba22d8ecf0c6dcb7e8816c5436a (patch) | |
tree | 127f3e21433130007cc017002c8933ee8e80c955 /bin | |
parent | 7329590233b0b0b568688bea6c24be451d4275d9 (diff) | |
download | FreeBSD-src-9e6d3856142e1ba22d8ecf0c6dcb7e8816c5436a.zip FreeBSD-src-9e6d3856142e1ba22d8ecf0c6dcb7e8816c5436a.tar.gz |
Fix a "#ifdef" where a comparison operator was used.
GCC 2.96 does not like this.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/csh/config.h | 2 | ||||
-rw-r--r-- | 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 |