summaryrefslogtreecommitdiff
path: root/sys/netiso/clnl.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netiso/clnl.h')
-rw-r--r--sys/netiso/clnl.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/netiso/clnl.h b/sys/netiso/clnl.h
index 5280a5d9fc8f..3008e958a460 100644
--- a/sys/netiso/clnl.h
+++ b/sys/netiso/clnl.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)clnl.h 7.3 (Berkeley) 5/6/91
- * $Id: clnl.h,v 1.2 1993/10/16 21:04:41 rgrimes Exp $
+ * $Id: clnl.h,v 1.4 1993/11/25 01:35:37 wollman Exp $
*/
/***********************************************************
@@ -57,9 +57,14 @@ SOFTWARE.
******************************************************************/
+#ifndef _NETISO_CLNL_H_
+#define _NETISO_CLNL_H_ 1
+
/*
* ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
*/
struct clnl_protosw {
- int (*clnl_input)(); /* input routine */
+ void (*clnl_input)(struct mbuf *, struct snpa_hdr *);
+ /* input routine */
};
+#endif /* _NETISO_CLNL_H_ */