aboutsummaryrefslogtreecommitdiff
path: root/mkfs_minix.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-20 06:14:08 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-20 06:14:08 +0000
commitb59ae6c5acd924f88fc9cb4285ed283f27c65194 (patch)
tree49d1bb722d95eb1aded6b5d354ac86e56c481c10 /mkfs_minix.c
parent59d90b8337e20463074c14f5215e7f2fdeb800ad (diff)
downloadbusybox-w32-b59ae6c5acd924f88fc9cb4285ed283f27c65194.tar.gz
busybox-w32-b59ae6c5acd924f88fc9cb4285ed283f27c65194.tar.bz2
busybox-w32-b59ae6c5acd924f88fc9cb4285ed283f27c65194.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 git-svn-id: svn://busybox.net/trunk/busybox@1864 69ca8d6d-28ef-0310-b511-8ec308f3f277
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;