diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
commit | cbe31dace5fb24304694d399b9eb267fbe752516 (patch) | |
tree | 49d1bb722d95eb1aded6b5d354ac86e56c481c10 /networking/ping.c | |
parent | 94456f598417f2f61edb97b5ab67ddfdc408ad10 (diff) | |
download | busybox-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 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ping.c b/networking/ping.c index c114fb0b3..50c7ce6e6 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: ping.c,v 1.37 2001/02/14 21:23:06 andersen Exp $ | 3 | * $Id: ping.c,v 1.38 2001/02/20 06:14:08 andersen Exp $ |
4 | * Mini ping implementation for busybox | 4 | * Mini ping implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -31,7 +31,6 @@ | |||
31 | * Original copyright notice is retained at the end of this file. | 31 | * Original copyright notice is retained at the end of this file. |
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include "busybox.h" | ||
35 | #include <sys/param.h> | 34 | #include <sys/param.h> |
36 | #include <sys/socket.h> | 35 | #include <sys/socket.h> |
37 | #include <sys/file.h> | 36 | #include <sys/file.h> |
@@ -50,6 +49,7 @@ | |||
50 | #include <unistd.h> | 49 | #include <unistd.h> |
51 | #include <string.h> | 50 | #include <string.h> |
52 | #include <stdlib.h> | 51 | #include <stdlib.h> |
52 | #include "busybox.h" | ||
53 | 53 | ||
54 | 54 | ||
55 | /* It turns out that libc5 doesn't have proper icmp support | 55 | /* It turns out that libc5 doesn't have proper icmp support |