summaryrefslogtreecommitdiff
path: root/tests/good/types.defs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/good/types.defs')
-rw-r--r--tests/good/types.defs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/good/types.defs b/tests/good/types.defs
index a27c191..5ef041c 100644
--- a/tests/good/types.defs
+++ b/tests/good/types.defs
@@ -23,7 +23,6 @@ import <stdint.h>;
import "types.h";
#include "../base_types.defs"
-type char = MACH_MSG_TYPE_CHAR;
type int16_t = MACH_MSG_TYPE_INTEGER_16;
type boolean_t = MACH_MSG_TYPE_BOOLEAN;
type uint16_t = MACH_MSG_TYPE_INTEGER_16;
@@ -50,7 +49,7 @@ type trans_int = int
outtran: int int8_to_int(int8_t);
routine alltypes(port : mach_port_t;
- c : char; s : int16_t; i : int;
+ c : char; s1 : int16_t; s2 : short; i : int;
i32 : int32_t; i64 : int64_t; bool : boolean_t;
ui16 : uint16_t; ui32 : uint32_t; ui64 : uint64_t);