From 2419de0720823d74d3f139618bb0321f99e82aaf Mon Sep 17 00:00:00 2001 From: Stefan Liebler Date: Fri, 19 Jun 2015 13:47:59 +0200 Subject: Fix benchtests build failure after 'add benchmark for strcoll' This patch fixes implicit declaration of function strdup, strtok, strcoll, strchr and removes unused variable res. ChangeLog: * benchtests/bench-strcoll.c: Include string.h. (main): Remove unused variable res. --- benchtests/bench-strcoll.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'benchtests') diff --git a/benchtests/bench-strcoll.c b/benchtests/bench-strcoll.c index c3d9a08..ded04a6 100644 --- a/benchtests/bench-strcoll.c +++ b/benchtests/bench-strcoll.c @@ -24,6 +24,7 @@ #include #include "json-lib.h" #include "bench-timing.h" +#include /* Many thanks to http://generator.lorem-ipsum.info/ */ #define INPUT_PREFIX "strcoll-inputs/" @@ -234,9 +235,6 @@ bench_file (json_ctx_t *json_ctx, const char *testname, const char *filename, int main (void) { - timing_t res; - TIMING_INIT (res); - json_ctx_t *json_ctx = malloc (sizeof (json_ctx_t)); assert (json_ctx != NULL); json_init (json_ctx, 2, stdout); -- cgit v1.1