summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBiswapriyo Nath <nathbappai@gmail.com>2021-07-29 02:25:49 +0530
committerBiswapriyo Nath <nathbappai@gmail.com>2021-07-29 02:25:49 +0530
commit1016e9e85eca13bd5fe5fdd4ed4838dd3f7bb2fe (patch)
tree1a566b2a6b4a54c48e543ae2fbf3e9e4dbcdf010
parentc7a65e873e7dc8580f0d13eadb6391564ae15d73 (diff)
downloadpango-1016e9e85eca13bd5fe5fdd4ed4838dd3f7bb2fe.tar.gz
tests: Fix implicit function declaration warnings with gcc
This includes stdlib.h for strtol, strtoll and strtod functions declaration
-rw-r--r--tests/test-common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-common.c b/tests/test-common.c
index 66493990..78ed722f 100644
--- a/tests/test-common.c
+++ b/tests/test-common.c
@@ -20,6 +20,7 @@
*/
#include <glib.h>
+#include <stdlib.h>
#include <string.h>
#include <locale.h>