summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp15/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp15/system.h')
-rw-r--r--testsuites/sptests/sp15/system.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/sptests/sp15/system.h b/testsuites/sptests/sp15/system.h
index 6a52222bb8..6d76c0c60e 100644
--- a/testsuites/sptests/sp15/system.h
+++ b/testsuites/sptests/sp15/system.h
@@ -46,15 +46,15 @@ TEST_EXTERN rtems_name Task_name[ 4 ]; /* array of task names */
TEST_EXTERN rtems_name Partition_id[ 4 ]; /* array of partition ids */
TEST_EXTERN rtems_name Partition_name[ 4 ]; /* array of partition names */
-TEST_EXTERN rtems_unsigned8 Area_1[4096] CPU_STRUCTURE_ALIGNMENT;
-TEST_EXTERN rtems_unsigned8 Area_2[274] CPU_STRUCTURE_ALIGNMENT;
+TEST_EXTERN uint8_t Area_1[4096] CPU_STRUCTURE_ALIGNMENT;
+TEST_EXTERN uint8_t Area_2[274] CPU_STRUCTURE_ALIGNMENT;
#define Put_address_from_area_1( _to_be_printed ) \
printf( "0x%08lx", \
- (unsigned long)((rtems_unsigned8 *)(_to_be_printed) - Area_1 ) )
+ (unsigned long)((uint8_t *)(_to_be_printed) - Area_1 ) )
#define Put_address_from_area_2( _to_be_printed ) \
printf( "0x%08lx", \
- (unsigned long)((rtems_unsigned8 *)(_to_be_printed) - Area_2 ) )
+ (unsigned long)((uint8_t *)(_to_be_printed) - Area_2 ) )
/* end of include file */