diff options
| author | scw <scw@NetBSD.org> | 2003-11-11 08:27:16 +0000 |
|---|---|---|
| committer | scw <scw@NetBSD.org> | 2003-11-11 08:27:16 +0000 |
| commit | f99d0398fb253f6b70f8e02ee17f2be00dec2b1d (patch) | |
| tree | 31390aed06a75e919919e38576c9cecd44c1b7d4 | |
| parent | b3023f06a56b6480df7f5dc85b152c9065ad4bfd (diff) | |
The previous commit had a #endif in the wrong place.
| -rw-r--r-- | sys/arch/arm/include/param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h index aa5e76b8ab6..25fde7e9421 100644 --- a/sys/arch/arm/include/param.h +++ b/sys/arch/arm/include/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.7 2003/11/09 08:27:19 scw Exp $ */ +/* $NetBSD: param.h,v 1.8 2003/11/11 08:27:16 scw Exp $ */ /* * Copyright (c) 1994,1995 Mark Brinicombe. @@ -48,7 +48,7 @@ * measure while we're finishing the conversion to ELF. * * For non-KERNEL code: - * If ELF, MACHINE and MACHINE_ARCH are forced to "arm". + * If ELF, MACHINE and MACHINE_ARCH are forced to "arm/armeb". */ #if defined(_KERNEL) @@ -60,6 +60,7 @@ #define _MACHINE_ARCH armeb #define MACHINE_ARCH "armeb" #endif /* __ARMEB__ */ +#endif /* MACHINE_ARCH */ #elif defined(__ELF__) #undef _MACHINE #undef MACHINE @@ -75,7 +76,6 @@ #define MACHINE_ARCH "armeb" #endif /* __ARMEB__ */ #endif /* __ELF__ */ -#endif /* _KERNEL */ #define MID_MACHINE MID_ARM6 |
