Module Name: src
Committed By: riastradh
Date: Sun Dec 18 18:32:24 UTC 2016
Modified Files:
src/usr.sbin/mdsetimage: mdsetimage.c
Log Message:
Need <stdint.h> for uintmax_t.
>From debidi in #netbsd on Freenode.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/usr.sbin/mdsetimage/mdsetimage.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/mdsetimage/mdsetimage.c
diff -u src/usr.sbin/mdsetimage/mdsetimage.c:1.23 src/usr.sbin/mdsetimage/mdsetimage.c:1.24
--- src/usr.sbin/mdsetimage/mdsetimage.c:1.23 Thu Sep 22 08:43:26 2016
+++ src/usr.sbin/mdsetimage/mdsetimage.c Sun Dec 18 18:32:24 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: mdsetimage.c,v 1.23 2016/09/22 08:43:26 mlelstv Exp $ */
+/* $NetBSD: mdsetimage.c,v 1.24 2016/12/18 18:32:24 riastradh Exp $ */
/*
* Copyright (c) 1996, 2002 Christopher G. Demetriou
@@ -37,7 +37,7 @@
#if !defined(lint)
__COPYRIGHT("@(#) Copyright (c) 1996\
Christopher G. Demetriou. All rights reserved.");
-__RCSID("$NetBSD: mdsetimage.c,v 1.23 2016/09/22 08:43:26 mlelstv Exp $");
+__RCSID("$NetBSD: mdsetimage.c,v 1.24 2016/12/18 18:32:24 riastradh Exp $");
#endif /* not lint */
#include <sys/types.h>
@@ -47,6 +47,7 @@ __RCSID("$NetBSD: mdsetimage.c,v 1.23 20
#include <err.h>
#include <fcntl.h>
#include <limits.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>