diff options
author | John Baldwin <jhb@FreeBSD.org> | 2009-06-02 12:35:04 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2009-06-02 12:35:04 +0000 |
commit | 11632ace3ababb6b3920643acf75b7de089d6fbb (patch) | |
tree | f91381fcf4bae3f8c1452bfe4cbf0aba405120e0 /sys/dev/pci | |
parent | 63fbf5047e8b1e87e7bfc000e53f9031097cd955 (diff) | |
download | src-11632ace3ababb6b3920643acf75b7de089d6fbb.tar.gz src-11632ace3ababb6b3920643acf75b7de089d6fbb.zip |
Include <machine/stdarg.h> for va_*(). I'm not sure how this compiled
on amd64 without this.
Notes
Notes:
svn path=/head/; revision=193306
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 5055762c0d15..63d9cee98eac 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$"); #include <machine/bus.h> #include <sys/rman.h> #include <machine/resource.h> +#include <machine/stdarg.h> #if defined(__i386__) || defined(__amd64__) #include <machine/intr_machdep.h> |