431755770451d19774f97cda5a0b1dfd73c8a85c
[platform/upstream/busybox.git] / networking / ipaddr.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 ipaddr_main(int argc, char **argv)
20 {
21         ip_parse_common_args(&argc, &argv);
22
23         return do_ipaddr(argc-1, argv+1);
24 }