diff options
author | Rob Landley | 2006-06-16 04:25:19 +0000 |
---|---|---|
committer | Rob Landley | 2006-06-16 04:25:19 +0000 |
commit | bc8c50351f304796dc5c54a0f3a4f4c7882ea9e4 (patch) | |
tree | cf3245830d4f6feabb8a8c87592bdac501fbebc8 /util-linux/mkfs_minix.c | |
parent | 9947a244d44edd3862694cce7a91e706b0cbd529 (diff) | |
download | busybox-bc8c50351f304796dc5c54a0f3a4f4c7882ea9e4.zip busybox-bc8c50351f304796dc5c54a0f3a4f4c7882ea9e4.tar.gz |
Remove warnings caused by #include <sys/mount.h> in platform.h. Apparently
we redefine a lot of stuff from standard header files...
Diffstat (limited to 'util-linux/mkfs_minix.c')
-rw-r--r-- | util-linux/mkfs_minix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index d9388b1..7f52b56 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c @@ -151,9 +151,6 @@ struct minix_dir_entry { char name[0]; }; -#define BLOCK_SIZE_BITS 10 -#define BLOCK_SIZE (1<<BLOCK_SIZE_BITS) - #define NAME_MAX 255 /* # chars in a file name */ #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode))) |