mirror of
https://github.com/ecki/net-tools.git
synced 2024-11-13 14:09:25 +00:00
1e4c72befc
Patch from Petr Pisar [Berlios Bug#16232].
30 lines
788 B
C
30 lines
788 B
C
/*
|
|
* 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
|