summaryrefslogtreecommitdiffstats
path: root/sys/net/if_slvar.h
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-10-08 01:40:23 +0000
committerphk <phk@FreeBSD.org>1994-10-08 01:40:23 +0000
commitf50da77aa98ede1317a69bf523f4ccb0448bc9b7 (patch)
tree5aa018d0db808c5af10ac9ac5d57c473ee5fa216 /sys/net/if_slvar.h
parentb2767579ff2a641ef763f05e59921a91c276a75e (diff)
downloadFreeBSD-src-f50da77aa98ede1317a69bf523f4ccb0448bc9b7.zip
FreeBSD-src-f50da77aa98ede1317a69bf523f4ccb0448bc9b7.tar.gz
Mostly Cosmetics. Some of the procedures in if_sl.c was void, but should
be int. I made them int, and let them return 0. Will have to find out what the return-val is used for.
Diffstat (limited to 'sys/net/if_slvar.h')
-rw-r--r--sys/net/if_slvar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h
index a7926a7..f94ec40 100644
--- a/sys/net/if_slvar.h
+++ b/sys/net/if_slvar.h
@@ -32,7 +32,7 @@
*
* @(#)if_slvar.h 8.3 (Berkeley) 2/1/94
*
- * $Id: if_slvar.h,v 1.2 1994/08/02 07:46:22 davidg Exp $
+ * $Id: if_slvar.h,v 1.3 1994/08/21 05:11:43 paul Exp $
*/
#ifndef _NET_IF_SLVAR_H_
@@ -72,14 +72,14 @@ struct sl_softc {
#ifdef KERNEL
void slattach __P((void));
-void slclose __P((struct tty *));
-void slinput __P((int, struct tty *));
+int slclose __P((struct tty *,int));
+int slinput __P((int, struct tty *));
int slioctl __P((struct ifnet *, int, caddr_t));
+int sltioctl __P((struct tty *, int, caddr_t, int, struct proc *));
int slopen __P((dev_t, struct tty *));
int sloutput __P((struct ifnet *,
struct mbuf *, struct sockaddr *, struct rtentry *));
-void slstart __P((struct tty *));
-int sltioctl __P((struct tty *, int, caddr_t, int));
+int slstart __P((struct tty *));
#endif /* KERNEL */
#endif
OpenPOWER on IntegriCloud