commit | 07a3b230e9581ef57b4a8fbc36c339fe9a711f6e | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Mon May 04 11:31:08 2015 -0600 |
committer | Simon Glass <sjg@chromium.org> | Thu May 14 18:49:34 2015 -0600 |
tree | 388463839bcb079e29a09346098e527e89345002 | |
parent | 342fa54dd3a4e7f154fda3aa9d79a7fcf5e1e899 [diff] [blame] |
sandbox: Add missing errno.h includes in a few files These files use error numbering, so add the include. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index b23d08b..4c38fab 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c
@@ -4,6 +4,7 @@ */ #include <common.h> +#include <errno.h> #include <os.h> #include <cli.h> #include <malloc.h>