mirror of git://sourceware.org/git/glibc.git
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.
This commit is contained in:
parent
86fe187471
commit
2419de0720
|
@ -1,3 +1,9 @@
|
||||||
|
2015-06-19 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||||
|
|
||||||
|
* benchtests/bench-strcoll.c:
|
||||||
|
Include string.h.
|
||||||
|
(main): Remove unused variable res.
|
||||||
|
|
||||||
2015-06-19 Stefan Liebler <stli@linux.vnet.ibm.com>
|
2015-06-19 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* timezone/Makefile (%/UTC %/Universal):
|
* timezone/Makefile (%/UTC %/Universal):
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "json-lib.h"
|
#include "json-lib.h"
|
||||||
#include "bench-timing.h"
|
#include "bench-timing.h"
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
/* Many thanks to http://generator.lorem-ipsum.info/ */
|
/* Many thanks to http://generator.lorem-ipsum.info/ */
|
||||||
#define INPUT_PREFIX "strcoll-inputs/"
|
#define INPUT_PREFIX "strcoll-inputs/"
|
||||||
|
@ -234,9 +235,6 @@ bench_file (json_ctx_t *json_ctx, const char *testname, const char *filename,
|
||||||
int
|
int
|
||||||
main (void)
|
main (void)
|
||||||
{
|
{
|
||||||
timing_t res;
|
|
||||||
TIMING_INIT (res);
|
|
||||||
|
|
||||||
json_ctx_t *json_ctx = malloc (sizeof (json_ctx_t));
|
json_ctx_t *json_ctx = malloc (sizeof (json_ctx_t));
|
||||||
assert (json_ctx != NULL);
|
assert (json_ctx != NULL);
|
||||||
json_init (json_ctx, 2, stdout);
|
json_init (json_ctx, 2, stdout);
|
||||||
|
|
Loading…
Reference in New Issue