Remove type prefix declarations

This commit is contained in:
Ginger Bill
2017-06-28 23:23:10 +01:00
parent 0622509807
commit 4f28e9e1fb
17 changed files with 233 additions and 256 deletions
+2 -2
View File
@@ -6,12 +6,12 @@ proc __multi3(a, b: u128) -> u128 #cc_c #link_name "__multi3" {
when ODIN_ENDIAN == "bit" {
type TWords raw_union {
TWords :: raw_union {
all: u128,
using _: struct {lo, hi: u64},
};
} else {
type TWords raw_union {
TWords :: raw_union {
all: u128,
using _: struct {hi, lo: u64},
};