diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2019-09-26 08:47:40 +0200 |
---|---|---|
committer | Patrick Rudolph <siro@das-labor.org> | 2019-09-27 16:20:04 +0000 |
commit | 5ebe4310875f5eb01bda69c144204ba8d89f967e (patch) | |
tree | a28d880a165dac41d55892bc99ac861bc8d3de8b /src | |
parent | 9e77d4d03773d32ea46c77ab969038738d1e327a (diff) |
lib/bootsplash: Fix compilation
Add missing include.
Tested on Supermicro X11SSH-TF.
Change-Id: Id0c80ac646001a497e96cae4d48a0f09762eb936
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35613
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/bootsplash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/bootsplash.c b/src/lib/bootsplash.c index 812a3b7ccc..8364afa0b9 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" |