Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sbin/fsck_msdos Add #include <inttypes.h> for intmax_t to fi...



details:   https://anonhg.NetBSD.org/src/rev/3aa5f2ca08ec
branches:  trunk
changeset: 333431:3aa5f2ca08ec
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Tue Nov 04 03:05:43 2014 +0000

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

diffstat:

 sbin/fsck_msdos/boot.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r 2d1915ee6dd1 -r 3aa5f2ca08ec sbin/fsck_msdos/boot.c
--- a/sbin/fsck_msdos/boot.c    Tue Nov 04 03:05:36 2014 +0000
+++ b/sbin/fsck_msdos/boot.c    Tue Nov 04 03:05:43 2014 +0000
@@ -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>
 



Home | Main Index | Thread Index | Old Index