diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-07 02:11:52 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-07 02:11:52 +0200 |
commit | 62f999141701ba915a035a11cbac7fc7ddb08f31 (patch) | |
tree | 981acd01a938755edd55123143ef028098c7b018 | |
parent | e52eb9e91481f7dd81abdfc9b7a88c68fe3f2d41 (diff) | |
download | blogc-62f999141701ba915a035a11cbac7fc7ddb08f31.tar.gz blogc-62f999141701ba915a035a11cbac7fc7ddb08f31.tar.bz2 blogc-62f999141701ba915a035a11cbac7fc7ddb08f31.zip |
tests: added missing include to fix warning
-rw-r--r-- | tests/common/check_stdin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/common/check_stdin.c b/tests/common/check_stdin.c index c0d222d..984db63 100644 --- a/tests/common/check_stdin.c +++ b/tests/common/check_stdin.c @@ -10,6 +10,7 @@ #include <stddef.h> #include <setjmp.h> #include <cmocka.h> +#include <stdlib.h> #include <string.h> #include <stdio.h> #include "../../src/common/stdin.h" |