diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-20 06:14:08 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-20 06:14:08 +0000 |
commit | b59ae6c5acd924f88fc9cb4285ed283f27c65194 (patch) | |
tree | 49d1bb722d95eb1aded6b5d354ac86e56c481c10 /wget.c | |
parent | 59d90b8337e20463074c14f5215e7f2fdeb800ad (diff) | |
download | busybox-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 'wget.c')
-rw-r--r-- | wget.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -14,7 +14,6 @@ | |||
14 | * | 14 | * |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "busybox.h" | ||
18 | #include <stdio.h> | 17 | #include <stdio.h> |
19 | #include <errno.h> | 18 | #include <errno.h> |
20 | #include <stdlib.h> | 19 | #include <stdlib.h> |
@@ -33,6 +32,8 @@ | |||
33 | #include <arpa/inet.h> | 32 | #include <arpa/inet.h> |
34 | #include <netdb.h> | 33 | #include <netdb.h> |
35 | 34 | ||
35 | #include "busybox.h" | ||
36 | |||
36 | /* Stupid libc5 doesn't define this... */ | 37 | /* Stupid libc5 doesn't define this... */ |
37 | #ifndef timersub | 38 | #ifndef timersub |
38 | #define timersub(a, b, result) \ | 39 | #define timersub(a, b, result) \ |
@@ -533,7 +534,7 @@ progressmeter(int flag) | |||
533 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 534 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
534 | * SUCH DAMAGE. | 535 | * SUCH DAMAGE. |
535 | * | 536 | * |
536 | * $Id: wget.c,v 1.27 2001/02/14 21:23:06 andersen Exp $ | 537 | * $Id: wget.c,v 1.28 2001/02/20 06:14:08 andersen Exp $ |
537 | */ | 538 | */ |
538 | 539 | ||
539 | 540 | ||