diff options
author | bde <bde@FreeBSD.org> | 1995-07-16 10:13:08 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-16 10:13:08 +0000 |
commit | 81e1e32f6c0662907cdbde6c1f5269cf8217838c (patch) | |
tree | c76b3e68271dcaaff69bea8d4467eaa0cc4bd913 /sys/gnu/isdn/iitel.c | |
parent | 694c4272848a2eb83621679c60812e3cbf1df6b2 (diff) | |
download | FreeBSD-src-81e1e32f6c0662907cdbde6c1f5269cf8217838c.zip FreeBSD-src-81e1e32f6c0662907cdbde6c1f5269cf8217838c.tar.gz |
Don't include <sys/tty.h> in drivers that aren't tty drivers or in general
files that don't depend on the internals of <sys/tty.h>
Diffstat (limited to 'sys/gnu/isdn/iitel.c')
-rw-r--r-- | sys/gnu/isdn/iitel.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/gnu/isdn/iitel.c b/sys/gnu/isdn/iitel.c index f751963..947e1d5 100644 --- a/sys/gnu/isdn/iitel.c +++ b/sys/gnu/isdn/iitel.c @@ -1,6 +1,6 @@ -static char _itelid[] = "@(#)$Id: iitel.c,v 1.2 1995/02/15 06:28:27 jkh Exp $"; +static char _itelid[] = "@(#)$Id: iitel.c,v 1.3 1995/03/28 07:54:41 bde Exp $"; /******************************************************************************* - * II - Version 0.1 $Revision: 1.2 $ $State: Exp $ + * II - Version 0.1 $Revision: 1.3 $ $State: Exp $ * * Copyright 1994 Dietmar Friede ******************************************************************************* @@ -10,6 +10,11 @@ static char _itelid[] = "@(#)$Id: iitel.c,v 1.2 1995/02/15 06:28:27 jkh Exp * ******************************************************************************* * $Log: iitel.c,v $ + * Revision 1.3 1995/03/28 07:54:41 bde + * Add and move declarations to fix all of the warnings from `gcc -Wimplicit' + * (except in netccitt, netiso and netns) that I didn't notice when I fixed + * "all" such warnings before. + * * Revision 1.2 1995/02/15 06:28:27 jkh * Fix up include paths, nuke some warnings. * @@ -32,7 +37,6 @@ static char _itelid[] = "@(#)$Id: iitel.c,v 1.2 1995/02/15 06:28:27 jkh Exp #include "buf.h" #include "systm.h" #include "ioctl.h" -#include "tty.h" #include "proc.h" #include "user.h" #include "uio.h" |