2003-04-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* rtems/score/cpu.h: Fix typo in __ARMEB__ handling.
This commit is contained in:
Ralf Corsepius
2003-04-24 10:55:40 +00:00
parent daf485eeb0
commit fe85708819
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2003-04-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtems/score/cpu.h: Fix typo in __ARMEB__ handling.
2003-04-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use "all-local:" instead of "all:".

View File

@@ -282,7 +282,7 @@ extern "C" {
#if defined(__ARMEL__)
#define CPU_BIG_ENDIAN FALSE
#define CPU_LITTLE_ENDIAN TRUE
#elif define(__ARMEB__)
#elif defined(__ARMEB__)
#define CPU_BIG_ENDIAN TRUE
#define CPU_LITTLE_ENDIAN FALSE
#else