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/route.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/route.c')
-rw-r--r-- | networking/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/route.c b/networking/route.c index d98d9a0b6..9be002792 100644 --- a/networking/route.c +++ b/networking/route.c | |||
@@ -15,14 +15,13 @@ | |||
15 | * Foundation; either version 2 of the License, or (at | 15 | * Foundation; either version 2 of the License, or (at |
16 | * your option) any later version. | 16 | * your option) any later version. |
17 | * | 17 | * |
18 | * $Id: route.c,v 1.6 2001/02/18 20:12:25 andersen Exp $ | 18 | * $Id: route.c,v 1.7 2001/02/20 06:14:08 andersen Exp $ |
19 | * | 19 | * |
20 | * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru> | 20 | * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru> |
21 | * busybox style adjustments by Larry Doolittle <LRDoolittle@lbl.gov> | 21 | * busybox style adjustments by Larry Doolittle <LRDoolittle@lbl.gov> |
22 | * displayroute() format now matches net-tools-1.57/lib/inet_gr.c line 173. | 22 | * displayroute() format now matches net-tools-1.57/lib/inet_gr.c line 173. |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "busybox.h" | ||
26 | #include <sys/types.h> | 25 | #include <sys/types.h> |
27 | #include <sys/ioctl.h> | 26 | #include <sys/ioctl.h> |
28 | #include <sys/socket.h> | 27 | #include <sys/socket.h> |
@@ -38,6 +37,7 @@ | |||
38 | #include <getopt.h> | 37 | #include <getopt.h> |
39 | #include <unistd.h> | 38 | #include <unistd.h> |
40 | #include <ctype.h> | 39 | #include <ctype.h> |
40 | #include "busybox.h" | ||
41 | 41 | ||
42 | #define _(x) x | 42 | #define _(x) x |
43 | 43 | ||