From: Theodore Ts'o Date: Sun, 14 Oct 2007 15:23:20 +0000 (-0400) Subject: Add blk64_t type definition X-Git-Tag: v1.41-WIP-0427~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eac91b35372c9affff6953165f34fe246272bef9;p=thirdparty%2Fe2fsprogs.git Add blk64_t type definition This will be used for all new functions so we can gradually move e2fsprogs to support 64 bit blocks. Signed-off-by: "Theodore Ts'o" --- diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index 83a90917e..5536b6053 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -65,6 +65,7 @@ extern "C" { typedef __u32 ext2_ino_t; typedef __u32 blk_t; +typedef __u64 blk64_t; typedef __u32 dgrp_t; typedef __u32 ext2_off_t; typedef __s64 e2_blkcnt_t;