From dac0e9d1b28c8c59e6cd1f35dfe71e163dc73bb1 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 6 Aug 2014 21:50:04 -0500 Subject: [PATCH] Delete useless 1-byte explicit endian types --- include/wimlib/types.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/wimlib/types.h b/include/wimlib/types.h index 0b533767..ac67cf4a 100644 --- a/include/wimlib/types.h +++ b/include/wimlib/types.h @@ -22,20 +22,17 @@ typedef int32_t s32; typedef int64_t s64; /* Unsigned little endian types of exact size */ -typedef uint8_t _bitwise_attr le8; typedef uint16_t _bitwise_attr le16; typedef uint32_t _bitwise_attr le32; typedef uint64_t _bitwise_attr le64; /* Signed little endian types of exact size (declare as unsigned to avoid sign * extension on big-endian architectures) */ -typedef uint8_t _bitwise_attr sle8; typedef uint16_t _bitwise_attr sle16; typedef uint32_t _bitwise_attr sle32; typedef uint64_t _bitwise_attr sle64; /* Unsigned big endian types of exact size */ -typedef uint8_t _bitwise_attr be8; typedef uint16_t _bitwise_attr be16; typedef uint32_t _bitwise_attr be32; typedef uint64_t _bitwise_attr be64; -- 2.43.0