From 96842c5a646fe1f70a352e14bf380743100876ee Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Wed, 18 Dec 2019 11:02:53 +0100 Subject: limit C headers to freestanding ones inttypes.h is not part of the subset of standard headers for freestanding environments. Replace it with stdint.h. Also include string.h with quotes, since we provide it. Signed-off-by: Paolo Bonzini --- pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pci.c') diff --git a/pci.c b/pci.c index 65c9e81..63ebda6 100644 --- a/pci.c +++ b/pci.c @@ -1,7 +1,7 @@ #include "bios.h" #include "ioport.h" #include "pci.h" -#include +#include "string.h" static uint16_t addend; static uint8_t bus, bridge_head; -- cgit v1.1