diff options
| author | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
|---|---|---|
| committer | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
| commit | a16f65c7d117419bd266c28a1901ef129a337569 (patch) | |
| tree | 2626602f66dc3551e7a7c7bc9ad763c3bc7ab40a /sys/netiso/eonvar.h | |
| parent | 8503f4f13f77abf7adc8f7e329c6f9c1d52b6a20 (diff) | |
Diffstat (limited to 'sys/netiso/eonvar.h')
| -rw-r--r-- | sys/netiso/eonvar.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sys/netiso/eonvar.h b/sys/netiso/eonvar.h index e199a79f9cfd..90e2dcf55ca4 100644 --- a/sys/netiso/eonvar.h +++ b/sys/netiso/eonvar.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)eonvar.h 7.5 (Berkeley) 5/6/91 - * $Id: eonvar.h,v 1.2 1993/10/16 21:05:04 rgrimes Exp $ + * $Id: eonvar.h,v 1.3 1993/11/07 17:49:32 wollman Exp $ */ /*********************************************************** @@ -61,6 +61,9 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ +#ifndef _NETISO_EONVAR_H_ +#define _NETISO_EONVAR_H_ 1 + #define EON_986_VERSION 0x3 #define EON_VERSION 0x1 @@ -149,7 +152,11 @@ struct eon_stat { /* errors */ int es_badcsum; int es_badhdr; -} eonstat; +}; + +#ifdef KERNEL +extern struct eon_stat eon_stat; +#endif #undef IncStat #define IncStat(xxx) eonstat.xxx++ @@ -169,3 +176,4 @@ struct eon_llinfo { }; #define el_iphdr el_ei.ei_ip #define el_eonhdr el_ei.ei_eh +#endif /* _NETISO_EONVAR_H_ */ |
