1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

libflashrom.h: Add types not included in all projects

Add <stdbool.h> and <stdint.h> to allow compilation in fwupd.

Signed-off-by: Mario Limonciello <mario.limonciello@dell.com>
Change-Id: Ib48ddc6412f82677f43e445346dc64ccfadf2423
Reviewed-on: https://review.coreboot.org/c/flashrom/+/35155
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jacob Garber <jgarber1@ualberta.ca>
This commit is contained in:
Mario Limonciello 2019-08-29 14:19:21 -05:00 committed by David Hendricks
parent 4362e62976
commit 40f0757750

View File

@ -20,6 +20,8 @@
#include <sys/types.h> #include <sys/types.h>
#include <stddef.h> #include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdarg.h> #include <stdarg.h>
int flashrom_init(int perform_selfcheck); int flashrom_init(int perform_selfcheck);