aboutsummaryrefslogtreecommitdiff
path: root/networking/iproute.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-04-10 20:11:12 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-04-10 20:11:12 +0000
commit07c394e69b0cfa7cd30e97ffc6edb0d857905f45 (patch)
tree6d3ed53ff0d0edd70b66866b205a1d99c7598b11 /networking/iproute.c
parent99003b8a87add666e2c16a097df4da4a59310c0c (diff)
downloadbusybox-w32-07c394e69b0cfa7cd30e97ffc6edb0d857905f45.tar.gz
busybox-w32-07c394e69b0cfa7cd30e97ffc6edb0d857905f45.tar.bz2
busybox-w32-07c394e69b0cfa7cd30e97ffc6edb0d857905f45.zip
- mv ip*_main into ip.c; use a dispatcher to save on needless duplication.
Saves a minor 12b.
Diffstat (limited to 'networking/iproute.c')
-rw-r--r--networking/iproute.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/networking/iproute.c b/networking/iproute.c
deleted file mode 100644
index 3d540b2ba..000000000
--- a/networking/iproute.c
+++ /dev/null
@@ -1,26 +0,0 @@
1/* vi: set sw=4 ts=4: */
2/*
3 * ip.c "ip" utility frontend.
4 *
5 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 *
7 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 *
9 *
10 * Changes:
11 *
12 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
13 */
14
15#include "libiproute/utils.h"
16#include "libiproute/ip_common.h"
17
18#include "busybox.h"
19
20int iproute_main(int argc, char **argv);
21int iproute_main(int argc, char **argv)
22{
23 ip_parse_common_args(&argc, &argv);
24
25 return do_iproute(argc-1, argv+1);
26}