mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
472 B

  1. --- ./mkdosfs.c.orig 2004-02-10 22:44:38.602762200 +0000
  2. +++ ./mkdosfs.c 2004-02-10 22:43:57.846958024 +0000
  3. @@ -43,7 +43,7 @@
  4. #include <fcntl.h>
  5. #include <linux/hdreg.h>
  6. -#include <linux/fs.h>
  7. +//#include <linux/fs.h>
  8. #include <sys/stat.h>
  9. #include <linux/fd.h>
  10. #include <mntent.h>
  11. @@ -61,6 +61,9 @@
  12. /* Constant definitions */
  13. +#define BLOCK_SIZE_BITS 10
  14. +#define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
  15. +
  16. #define TRUE 1 /* Boolean constants */
  17. #define FALSE 0