diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-03-24 11:33:46 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-03-24 11:33:46 +0000 |
commit | 51a534883ac9688f59dffaa624c42b0fad6236b8 (patch) | |
tree | b194e77f08cfd580c094341e2dde06fe2625c8f1 /sys/pci/if_de.c | |
parent | fce002fdef3780b4b80bfe0ba6d126bfc10130e9 (diff) | |
download | src-51a534883ac9688f59dffaa624c42b0fad6236b8.tar.gz src-51a534883ac9688f59dffaa624c42b0fad6236b8.zip |
Don't include <sys/ioctl.h> in the kernel. Stage 2: include
<sys/sockio.h> instead of <sys/ioctl.h> in network files.
Notes
Notes:
svn path=/head/; revision=24204
Diffstat (limited to 'sys/pci/if_de.c')
-rw-r--r-- | sys/pci/if_de.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_de.c b/sys/pci/if_de.c index 788db438221e..e3c4fb09b59a 100644 --- a/sys/pci/if_de.c +++ b/sys/pci/if_de.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_de.c,v 1.61 1997/03/20 07:25:22 kato Exp $ + * $Id: if_de.c,v 1.62 1997/03/23 05:10:14 kato Exp $ * */ @@ -40,7 +40,7 @@ #include <sys/mbuf.h> #include <sys/protosw.h> #include <sys/socket.h> -#include <sys/ioctl.h> +#include <sys/sockio.h> #include <sys/errno.h> #include <sys/malloc.h> #include <sys/kernel.h> |