source: MondoRescue/trunk/mindi-busybox/networking/iplink.c@ 956

Last change on this file since 956 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 466 bytes
Line 
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
19int iplink_main(int argc, char **argv)
20{
21 ip_parse_common_args(&argc, &argv);
22
23 return do_iplink(argc-1, argv+1);
24}
Note: See TracBrowser for help on using the repository browser.