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

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