Thomas Heijligen has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/64385 )
Change subject: tests: add "stdlib.h" to the default includes ......................................................................
tests: add "stdlib.h" to the default includes
Change-Id: I43fb02b2cff29d964e92556ad656cdda74a45ef2 Signed-off-by: Thomas Heijligen thomas.heijligen@secunet.com --- M tests/include/test.h 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/85/64385/1
diff --git a/tests/include/test.h b/tests/include/test.h index 88ac16d..28ac9f5 100644 --- a/tests/include/test.h +++ b/tests/include/test.h @@ -24,6 +24,7 @@
#include <stdarg.h> #include <stddef.h> +#include <stdlib.h> #include <setjmp.h> #include <cmocka.h>