aboutsummaryrefslogtreecommitdiff
path: root/networking/iproute.c
diff options
context:
space:
mode:
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}