summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/unix/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-07-29 23:01:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-07-29 23:01:15 +0000
commit6805640ec7e626a8ce21d0527c4f9222716af039 (patch)
treeb7ff180b730bcb12e96b7986401b2187194b08d7 /c/src/exec/score/cpu/unix/rtems
parentAdded section on ddd. (diff)
downloadrtems-6805640ec7e626a8ce21d0527c4f9222716af039.tar.bz2
Patch from Charles-Antoine Gauthier <charles.gauthier@iit.nrc.ca>
to correct a typo CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES was actually typed in as CPU_CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
Diffstat (limited to 'c/src/exec/score/cpu/unix/rtems')
-rw-r--r--c/src/exec/score/cpu/unix/rtems/score/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/score/cpu/unix/rtems/score/cpu.h b/c/src/exec/score/cpu/unix/rtems/score/cpu.h
index 227a631139..466a5dc5c7 100644
--- a/c/src/exec/score/cpu/unix/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/unix/rtems/score/cpu.h
@@ -291,11 +291,11 @@ extern "C" {
*/
#if defined(__hppa__) || defined(__sparc__)
-#define CPU_CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES FALSE
+#define CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES FALSE
#define CPU_BIG_ENDIAN TRUE
#define CPU_LITTLE_ENDIAN FALSE
#elif defined(__i386__)
-#define CPU_CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES FALSE
+#define CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES FALSE
#define CPU_BIG_ENDIAN FALSE
#define CPU_LITTLE_ENDIAN TRUE
#else