diff options
Diffstat (limited to 'util-linux/mkfs_vfat.c')
-rw-r--r-- | util-linux/mkfs_vfat.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index 8c6078d..8d12bab 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c @@ -7,12 +7,15 @@ * * Licensed under GPLv2, see file LICENSE in this tarball for details. */ -#include "libbb.h" -#include "volume_id/volume_id_internal.h" - #include <linux/hdreg.h> /* HDIO_GETGEO */ #include <linux/fd.h> /* FDGETPRM */ +#include <sys/mount.h> /* BLKSSZGET */ +#if !defined(BLKSSZGET) +# define BLKSSZGET _IO(0x12, 104) +#endif //#include <linux/msdos_fs.h> +#include "libbb.h" +#include "volume_id/volume_id_internal.h" #define SECTOR_SIZE 512 |