]> wimlib.net Git - wimlib/commitdiff
Delete useless 1-byte explicit endian types
authorEric Biggers <ebiggers3@gmail.com>
Thu, 7 Aug 2014 02:50:04 +0000 (21:50 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 7 Aug 2014 02:50:04 +0000 (21:50 -0500)
include/wimlib/types.h

index 0b53376771d1f6ddbd6c07a5e6096134edb8826d..ac67cf4a9a810b0fd7b0a34bc7e1f2c7340c4de9 100644 (file)
@@ -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;