1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

libflashrom.h: Add missing includes

<stddef.h> for `size_t` and <sys/types.h> for `off_t`.

Change-Id: Ifc84dfe2a06633321d0abd364bdea1216925a779
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/30153
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
This commit is contained in:
Nico Huber 2018-12-10 15:21:40 +01:00 committed by Nico Huber
parent ba72e91ec1
commit e7cbfae69e

View File

@ -18,6 +18,8 @@
#ifndef __LIBFLASHROM_H__
#define __LIBFLASHROM_H__ 1
#include <sys/types.h>
#include <stddef.h>
#include <stdarg.h>
int flashrom_init(int perform_selfcheck);