~ubuntu-branches/ubuntu/edgy/net-tools/edgy

« back to all changes in this revision

Viewing changes to lib/ec_hw.c

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Eckenfels
  • Date: 2001-11-24 06:26:37 UTC
  • Revision ID: james.westby@ubuntu.com-20011124062637-1y96kzx03e8dbi55
Tags: upstream-1.60
ImportĀ upstreamĀ versionĀ 1.60

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.2 1999/09/27 11:00:46 philip 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 <net/if_arp.h>
 
20
#include "net-support.h"
 
21
 
 
22
struct hwtype ec_hwtype =
 
23
{
 
24
    "ec", NULL /* "Econet" */, ARPHRD_ECONET, 0,
 
25
    NULL, NULL, NULL
 
26
};
 
27
 
 
28
#endif