man/pt_BR/ifconfig.8: remove untranslated paragraph
[platform/upstream/net-tools.git] / lib / ec_hw.c
1 /*
2  * lib/ec_hw.c  This file contains an implementation of the Econet
3  *              hardware support functions.
4  *
5  * Version:     $Id: ec_hw.c,v 1.3 2009/09/06 22:39:20 ecki Exp $
6  *
7  * Author:      Philip Blundell <philb@gnu.org>
8  *
9  *              This program is free software; you can redistribute it
10  *              and/or  modify it under  the terms of  the GNU General
11  *              Public  License as  published  by  the  Free  Software
12  *              Foundation;  either  version 2 of the License, or  (at
13  *              your option) any later version.
14  */
15 #include "config.h"
16
17 #if HAVE_HWEC
18
19 #include <stdlib.h>
20 #include <net/if_arp.h>
21 #include "net-support.h"
22
23 struct hwtype ec_hwtype =
24 {
25     "ec", NULL /* "Econet" */, ARPHRD_ECONET, 0,
26     NULL, NULL, NULL
27 };
28
29 #endif