1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-14 14:55:41 +00:00

Added #include <sys/queue.h>. This will be required when I move

the (inline) implementations of insque() and remque() from
<machine/cpufunc.h> to <sys/queue.h>.
This commit is contained in:
Bruce Evans 1995-11-24 12:01:08 +00:00
parent e316debe42
commit 530e1829ef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12468
2 changed files with 4 additions and 2 deletions

View File

@ -33,7 +33,7 @@
*
* @(#)ipx_pcb.c
*
* $Id: ipx_pcb.c,v 1.2 1995/10/31 23:36:34 julian Exp $
* $Id: ipx_pcb.c,v 1.3 1995/11/04 09:03:10 julian Exp $
*/
#include <sys/param.h>
@ -43,6 +43,7 @@
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/protosw.h>
#include <sys/queue.h>
#include <net/if.h>
#include <net/route.h>

View File

@ -33,7 +33,7 @@
*
* @(#)spx_usrreq.h
*
* $Id: spx_usrreq.c,v 1.4 1995/11/04 09:03:43 julian Exp $
* $Id: spx_usrreq.c,v 1.5 1995/11/24 11:43:55 bde Exp $
*/
#include <sys/param.h>
@ -41,6 +41,7 @@
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/errno.h>