summaryrefslogtreecommitdiff
path: root/mkfs_minix.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-20 06:14:08 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-20 06:14:08 +0000
commitcbe31dace5fb24304694d399b9eb267fbe752516 (patch)
tree49d1bb722d95eb1aded6b5d354ac86e56c481c10 /mkfs_minix.c
parent94456f598417f2f61edb97b5ab67ddfdc408ad10 (diff)
downloadbusybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.gz
busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.bz2
busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.zip
It turns out that DODMALLOC was broken when I reorganized busybox.h
header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
Diffstat (limited to 'mkfs_minix.c')
-rw-r--r--mkfs_minix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkfs_minix.c b/mkfs_minix.c
index 6b4a3e2d1..b666338dc 100644
--- a/mkfs_minix.c
+++ b/mkfs_minix.c
@@ -62,7 +62,6 @@
62 * removed getopt based parser and added a hand rolled one. 62 * removed getopt based parser and added a hand rolled one.
63 */ 63 */
64 64
65#include "busybox.h"
66#include <stdio.h> 65#include <stdio.h>
67#include <time.h> 66#include <time.h>
68#include <unistd.h> 67#include <unistd.h>
@@ -75,6 +74,7 @@
75#include <sys/ioctl.h> 74#include <sys/ioctl.h>
76#include <sys/param.h> 75#include <sys/param.h>
77#include <mntent.h> 76#include <mntent.h>
77#include "busybox.h"
78 78
79 79
80typedef unsigned char u8; 80typedef unsigned char u8;