/
githubmirror
/
net-tools
Обзор
Документация
Войти
/
githubmirror
/
net-tools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/ec_hw.c
27 строк
719 B
Bernd Exkenfels
remove legacy CVS source id/versions
08 сен 2025, 21:43
08 сен 2025, 21:43
a7958fd
Код
Авторство
О чём код?
/* * lib/ec_hw.c This file contains an implementation of the Econet * hardware support functions. * * 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