diff options
author | Biswapriyo Nath <nathbappai@gmail.com> | 2021-07-29 02:25:49 +0530 |
---|---|---|
committer | Biswapriyo Nath <nathbappai@gmail.com> | 2021-07-29 02:25:49 +0530 |
commit | 1016e9e85eca13bd5fe5fdd4ed4838dd3f7bb2fe (patch) | |
tree | 1a566b2a6b4a54c48e543ae2fbf3e9e4dbcdf010 /tests | |
parent | c7a65e873e7dc8580f0d13eadb6391564ae15d73 (diff) | |
download | pango-1016e9e85eca13bd5fe5fdd4ed4838dd3f7bb2fe.tar.gz |
tests: Fix implicit function declaration warnings with gcc
This includes stdlib.h for strtol, strtoll and strtod functions declaration
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-common.c | 1 |
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> |