diff options
author | Denys Vlasenko | 2018-09-28 15:13:04 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-09-28 15:13:04 +0200 |
commit | abfa3ec0598ff431407224c6b81682f7d0d35495 (patch) | |
tree | e5387999595e1f0c383c4aced38fe5a24dd90ef0 /util-linux/mkfs_vfat.c | |
parent | aae428f0bf0fcd6cd0a2503b3a50de43785b8fd0 (diff) | |
download | busybox-abfa3ec0598ff431407224c6b81682f7d0d35495.zip busybox-abfa3ec0598ff431407224c6b81682f7d0d35495.tar.gz |
move storage helpers to libbb.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mkfs_vfat.c')
-rw-r--r-- | util-linux/mkfs_vfat.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index 92f0e3b..6a6dc65 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c @@ -206,19 +206,6 @@ static const char boot_code[] ALIGN1 = #define MARK_CLUSTER(cluster, value) \ ((uint32_t *)fat)[cluster] = SWAP_LE32(value) -void BUG_unsupported_field_size(void); -#define STORE_LE(field, value) \ -do { \ - if (sizeof(field) == 4) \ - field = SWAP_LE32((uint32_t)(value)); \ - else if (sizeof(field) == 2) \ - field = SWAP_LE16((uint16_t)(value)); \ - else if (sizeof(field) == 1) \ - field = (uint8_t)(value); \ - else \ - BUG_unsupported_field_size(); \ -} while (0) - /* compat: * mkdosfs 2.11 (12 Mar 2005) * Usage: mkdosfs [-A] [-c] [-C] [-v] [-I] [-l bad-block-file] |