From 361f2db7660cfce75b699b17a592cf2cf3cfed3f Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 18 Sep 2013 10:23:02 +0200 Subject: [PATCH] bootstrap: Add missing include Signed-off-by: Sascha Hauer --- include/bootstrap.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/bootstrap.h b/include/bootstrap.h index 0fa6b8315..28852c0cb 100644 --- a/include/bootstrap.h +++ b/include/bootstrap.h @@ -7,6 +7,8 @@ #ifndef __BOOSTRAP_H__ #define __BOOSTRAP_H__ +#include + #define bootstrap_err(fmt, arg...) printf(fmt, ##arg) void bootstrap_boot(int (*func)(void), bool barebox);