1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Fix the build by including <sys/param.h> in <sys/clist.h>.

Of course I was silly enough to only check LINT for build failures, but not
the userspace bits. In the mpsafetty branch I didn't notice this, because
<sys/clist.h> never got included in userspace.

Approved by:	philip (mentor)
Pointy hat to:	me :-(
This commit is contained in:
Ed Schouten 2008-05-23 18:34:33 +00:00
parent 15822fcdbe
commit 4bd31dd151
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179253

View File

@ -33,6 +33,8 @@
#ifndef _SYS_CLIST_H_
#define _SYS_CLIST_H_
#include <sys/param.h>
/*
* Clists are character lists, which is a variable length linked list
* of cblocks, with a count of the number of characters in the list.