summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/no_cpu/no_cputypes.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/cpu/no_cpu/no_cputypes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/exec/score/cpu/no_cpu/no_cputypes.h b/c/src/exec/score/cpu/no_cpu/no_cputypes.h
index e3e350a54d..c2a37667d9 100644
--- a/c/src/exec/score/cpu/no_cpu/no_cputypes.h
+++ b/c/src/exec/score/cpu/no_cpu/no_cputypes.h
@@ -34,10 +34,10 @@ typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
typedef unsigned16 Priority_Bit_map_control;
-typedef char signed8; /* signed 8-bit integer */
-typedef short signed16; /* signed 16-bit integer */
-typedef int signed32; /* signed 32-bit integer */
-typedef long long signed64; /* signed 64-bit integer */
+typedef signed char signed8; /* 8-bit signed integer */
+typedef signed short signed16; /* 16-bit signed integer */
+typedef signed int signed32; /* 32-bit signed integer */
+typedef signed long long signed64; /* 64 bit signed integer */
typedef unsigned32 boolean; /* Boolean value */