diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-04-29 15:24:00 +0000 | 
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-04-29 15:24:00 +0000 | 
| commit | 402c1682aad4e43c6656b2db40620f0aa86ca7c2 (patch) | |
| tree | 73330e4e0a78405ea10ea98f09ebb888cb9d7686 | |
| parent | 2bf5814ab59097675820d7c40d03d1822ecbeb3e (diff) | |
Notes
| -rw-r--r-- | sys/net/slip.h | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/net/slip.h b/sys/net/slip.h index 8d5463e5fb2c..d438d42a3c8b 100644 --- a/sys/net/slip.h +++ b/sys/net/slip.h @@ -31,19 +31,19 @@   * SUCH DAMAGE.   *   *	@(#)slip.h	8.1 (Berkeley) 2/12/94 - * $Id: slip.h,v 1.4 1995/03/30 20:43:32 ache Exp $ + * $Id: slip.h,v 1.5 1995/04/28 18:47:29 ache Exp $   */  #ifndef _NET_SLIP_H_ -#define _NET_SLIP_H_ +#define	_NET_SLIP_H_  /* Ioctls operating on SLIP ttys. */ -#define	SLIOCGUNIT	_IOR('t', 88, int)	/* get slip unit number	*/ +#define	SLIOCGUNIT	_IOR('t', 88, int)	/* get slip unit number */  #define	SLIOCSKEEPAL	_IOW('t', 84, int)	/* set keepalive */ -#define	SLIOCSOUTFILL	_IOW('t', 83, int)	/* set out fill	time */ +#define	SLIOCSOUTFILL	_IOW('t', 83, int)	/* set out fill time */  #define	SLIOCGKEEPAL	_IOR('t', 82, int)	/* get keepalive time */ -#define	SLIOCGOUTFILL	_IOR('t', 81, int)	/* get out fill	time */ -#define	SLIOCSUNIT	_IOW('t', 80, int)	/* set slip unit number	*/ +#define	SLIOCGOUTFILL	_IOR('t', 81, int)	/* get out fill time */ +#define	SLIOCSUNIT	_IOW('t', 80, int)	/* set slip unit number */  /*   * Definitions of the pseudo-link-level header attached to slip @@ -57,6 +57,6 @@  #define	CHDR_LEN	15		/* length of compressed header data */  #define	SLIPDIR_IN	0		/* incoming */ - -#endif  #define	SLIPDIR_OUT	1		/* outgoing */ + +#endif /* !_NET_SLIP_H */  | 
