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-07c394e69b0cfa7cd30e97ffc6edb0d857905f45.tar.gz
- 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 @@
-/* vi: set sw=4 ts=4: */
-/*
- * ip.c "ip" utility frontend.
- *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
- *
- * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
- *
- *
- * Changes:
- *
- * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
- */
-
-#include "libiproute/utils.h"
-#include "libiproute/ip_common.h"
-
-#include "busybox.h"
-
-int iproute_main(int argc, char **argv);
-int iproute_main(int argc, char **argv)
-{
- ip_parse_common_args(&argc, &argv);
-
- return do_iproute(argc-1, argv+1);
-}