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