Include <sys/queue.h> instead of <sys/buf.h>.

This commit is contained in:
Ralf Corsepius
2007-03-28 15:34:23 +00:00
parent a67c316ac8
commit 816f422261
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@
#include <sys/sx.h>
#include <sys/sysproto.h>
#else
#include <sys/buf.h>
#include <sys/queue.h>
#include <stdio.h> /* for snprintf() */
size_t strlcpy(char *, const char *, size_t);

View File

@@ -44,7 +44,7 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/file.h>
#include <sys/buf.h>
#include <sys/queue.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/protosw.h>