diff options
author | dg <dg@FreeBSD.org> | 1994-11-03 21:46:55 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-11-03 21:46:55 +0000 |
commit | 6e04bf5b79c4d78b95e9824021a12aa0544a341e (patch) | |
tree | 3d9a77fcb11632cce8fe82b6a62ed65ea2b5bd1a | |
parent | b3774b68a5791e7f5929402412727bebbb35c8bc (diff) | |
download | FreeBSD-src-6e04bf5b79c4d78b95e9824021a12aa0544a341e.zip FreeBSD-src-6e04bf5b79c4d78b95e9824021a12aa0544a341e.tar.gz |
Nuked #ifdef __386BSD__ since this is not appropriate and no longer defined
in our 2.6.1 gcc port.
-rw-r--r-- | bin/ed/ed.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/ed/ed.h b/bin/ed/ed.h index 703c01b..6296516 100644 --- a/bin/ed/ed.h +++ b/bin/ed/ed.h @@ -25,13 +25,11 @@ * SUCH DAMAGE. * * @(#)ed.h,v 1.5 1994/02/01 00:34:39 alm Exp - * $Id$ + * $Id: ed.h,v 1.7 1994/09/24 02:55:25 davidg Exp $ */ #include <sys/types.h> -#if defined(BSD) && BSD >= 199103 || defined(__386BSD__) -# include <sys/param.h> /* for MAXPATHLEN */ -#endif +#include <sys/param.h> /* for MAXPATHLEN */ #include <errno.h> #if defined(sun) || defined(__NetBSD__) # include <limits.h> |