svn commit: r356790 - head/usr.bin/mkimg
Alex Richardson
arichardson at FreeBSD.org
Thu Jan 16 14:14:56 UTC 2020
Author: arichardson
Date: Thu Jan 16 14:14:55 2020
New Revision: 356790
URL: https://svnweb.freebsd.org/changeset/base/356790
Log:
Allow bootstrapping mkimg on macOS/Linux
On these systems the (u)int64_t typedefs will not be implicitly defined by the
previous includes, so include <stdint.h> in the header that uses uint64_t.
Reviewed By: brooks
Differential Revision: https://reviews.freebsd.org/D23202
Modified:
head/usr.bin/mkimg/image.h
Modified: head/usr.bin/mkimg/image.h
==============================================================================
--- head/usr.bin/mkimg/image.h Thu Jan 16 14:14:50 2020 (r356789)
+++ head/usr.bin/mkimg/image.h Thu Jan 16 14:14:55 2020 (r356790)
@@ -29,6 +29,8 @@
#ifndef _MKIMG_IMAGE_H_
#define _MKIMG_IMAGE_H_
+#include <stdint.h>
+
typedef int64_t lba_t;
int image_copyin(lba_t blk, int fd, uint64_t *sizep);
More information about the svn-src-all
mailing list