From cbe31dace5fb24304694d399b9eb267fbe752516 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 20 Feb 2001 06:14:08 +0000 Subject: 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 --- update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'update.c') diff --git a/update.c b/update.c index 2cf4a98b2..b282b9e18 100644 --- a/update.c +++ b/update.c @@ -28,7 +28,6 @@ * earlier) kernel. 2.2.x and higher flush filesystem buffers automatically. */ -#include "busybox.h" #include #include #include /* for getopt() */ @@ -42,6 +41,7 @@ #include static _syscall2(int, bdflush, int, func, int, data); #endif /* __GLIBC__ */ +#include "busybox.h" static unsigned int sync_duration = 30; static unsigned int flush_duration = 5; -- cgit v1.2.3