X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=build-aux%2Fcheck-structs;h=e50e3101164d872a993774ac49f82f9559aad514;hb=717e7c8d1d9715f7177b7bf32c3158a8cca503d8;hp=731a4e29f732a2fc4e7fded63c1da78bd4bcb645;hpb=539315543cc6123ae4efec162e291f7f90d0ccf0;p=openvswitch diff --git a/build-aux/check-structs b/build-aux/check-structs index 731a4e29..e50e3101 100755 --- a/build-aux/check-structs +++ b/build-aux/check-structs @@ -11,9 +11,6 @@ anyWarnings = False types = {} types['char'] = {"size": 1, "alignment": 1} types['uint8_t'] = {"size": 1, "alignment": 1} -types['uint16_t'] = {"size": 2, "alignment": 2} -types['uint32_t'] = {"size": 4, "alignment": 4} -types['uint64_t'] = {"size": 8, "alignment": 8} types['ovs_be16'] = {"size": 2, "alignment": 2} types['ovs_be32'] = {"size": 4, "alignment": 4} types['ovs_be64'] = {"size": 8, "alignment": 8}