fix no previous prototype warning
[oweals/busybox.git] / networking / iproute.c
1 /*
2  * ip.c         "ip" utility frontend.
3  *
4  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
5  *
6  * Authors:     Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
7  *
8  *
9  * Changes:
10  *
11  * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
12  */
13
14 #include "libiproute/utils.h"
15 #include "libiproute/ip_common.h"
16
17 #include "busybox.h"
18
19 int iproute_main(int argc, char **argv)
20 {
21         ip_parse_common_args(&argc, &argv);
22
23         return do_iproute(argc-1, argv+1);
24 }