diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-06 14:13:54 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-06 14:13:54 +0000 |
commit | 16e3f110a592b5e0fb083c6a897c41a616100ccb (patch) | |
tree | 118e883cb1a8819e19d23fd5c516e990066f33a2 /sys | |
parent | bf3991667c0af4bd9feb391dba9900d4c46ae4da (diff) |
fix includes for x25/llc.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_ethersubr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 49f3c09f9d3..2f1e87c6c38 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ethersubr.c,v 1.10 1996/05/06 05:43:41 mickey Exp $ */ +/* $OpenBSD: if_ethersubr.c,v 1.11 1996/05/06 14:13:53 mickey Exp $ */ /* $NetBSD: if_ethersubr.c,v 1.18 1996/02/13 22:00:14 christos Exp $ */ /* @@ -80,13 +80,15 @@ #endif #ifdef LLC +#include <netccitt/x25.h> +#include <netccitt/pk.h> +#include <netccitt/pk_extern.h> #include <netccitt/dll.h> #include <netccitt/llc_var.h> #endif #if defined(LLC) && defined(CCITT) #include <sys/socketvar.h> -#include <netccitt/x25.h> #endif u_char etherbroadcastaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |