Add #include <inttypes.h> for intmax_t to fix compile error.

This commit is contained in:
msaitoh 2014-11-04 03:05:43 +00:00
parent a9c1f0b420
commit 48b712a059
1 changed files with 2 additions and 1 deletions

View File

@ -27,12 +27,13 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: boot.c,v 1.17 2014/11/03 18:55:04 jakllsch Exp $");
__RCSID("$NetBSD: boot.c,v 1.18 2014/11/04 03:05:43 msaitoh Exp $");
#endif /* not lint */
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <inttypes.h>
#include <stdio.h>
#include <unistd.h>