commit | 17064c0e4de8e4c82f78e3711badeaba7ad41a75 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Jan 10 15:54:06 2012 -0800 |
committer | Mike Frysinger <vapier@gentoo.org> | Mon Mar 12 11:03:42 2012 -0400 |
tree | f9e0d7eb963931f20b480066bc6adcab2e2f5f4f | |
parent | e8015a67167be5f2a3c2dffd45a6296599e128c2 [diff] |
sandbox: add required header to os.c We should include the sys/time.h header to avoid warnings. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index a1d324b..093e7dc 100644 --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c
@@ -27,6 +27,7 @@ #include <unistd.h> #include <sys/mman.h> #include <sys/stat.h> +#include <sys/time.h> #include <sys/types.h> #include <linux/types.h>