elfstructs.h doesn't require anything from inttypes.h: it's more appropriate to include stdint.h instead which contains the type declarations required for the ELF types.
Signed-off-by: Roger Pau Monné <[email protected]> --- tools/firmware/hvmloader/32bitbios_support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/firmware/hvmloader/32bitbios_support.c b/tools/firmware/hvmloader/32bitbios_support.c index e726946a7b..d1ead1ec11 100644 --- a/tools/firmware/hvmloader/32bitbios_support.c +++ b/tools/firmware/hvmloader/32bitbios_support.c @@ -20,7 +20,7 @@ * this program; If not, see <http://www.gnu.org/licenses/>. */ -#include <inttypes.h> +#include <stdint.h> #include <xen/libelf/elfstructs.h> #ifdef __sun__ #include <sys/machelf.h> -- 2.30.1
