sys/rman.h now requires sys/types.h. Include it to make the API match

the man page again.

Submitted by:	Raphael Kubo da Costa
MFC after:	2 weeks
This commit is contained in:
Warner Losh 2011-02-10 04:53:09 +00:00
parent 826bf287b5
commit 82394a8d94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=218505
2 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@
#define _DEVINFO_H_INCLUDED
#include <sys/cdefs.h>
#include <sys/_types.h>
#include <sys/types.h>
#include <sys/bus.h>
typedef __uintptr_t devinfo_handle_t;

View File

@ -27,6 +27,7 @@
* $FreeBSD$
*/
#include <sys/types.h>
#include <sys/rman.h>
#include <sys/bus.h>