Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35613 )
Change subject: lib/bootsplash: Fix compilation ......................................................................
lib/bootsplash: Fix compilation
Add missing include. Tested on Supermicro X11SSH-TF.
Change-Id: Id0c80ac646001a497e96cae4d48a0f09762eb936 Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com --- M src/lib/bootsplash.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/13/35613/1
diff --git a/src/lib/bootsplash.c b/src/lib/bootsplash.c index 812a3b7..8364afa 100644 --- a/src/lib/bootsplash.c +++ b/src/lib/bootsplash.c @@ -18,6 +18,7 @@ #include <console/console.h> #include <endian.h> #include <bootsplash.h> +#include <stdlib.h>
#include "jpeg.h"