summaryrefslogtreecommitdiff
path: root/ext2fs/balloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext2fs/balloc.c')
-rw-r--r--ext2fs/balloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext2fs/balloc.c b/ext2fs/balloc.c
index 661894f6..437febaa 100644
--- a/ext2fs/balloc.c
+++ b/ext2fs/balloc.c
@@ -42,7 +42,7 @@
#include <string.h>
#include "ext2fs.h"
-
+#include "bitmap.c"
/* Returns a pointer to the first occurence of CH in the buffer BUF of len
LEN, or BUF + LEN if CH doesn't occur. */
@@ -52,7 +52,6 @@ memscan (void *buf, unsigned char ch, size_t len)
return memchr (buf, ch, len) ?: buf + len;
}
-
#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
void