From 26201178d8377ad75f864df31c71110f1cd6eedc Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sat, 2 Feb 2019 16:12:09 +0100 Subject: [PATCH] *-map tests: Fix compilation error. * tests/test-array_map.c: Include , for CHAR_BIT. * tests/test-hash_map.c: Likewise. * tests/test-linkedhash_map.c: Likewise. --- ChangeLog | 7 +++++++ tests/test-array_map.c | 1 + tests/test-hash_map.c | 1 + tests/test-linkedhash_map.c | 1 + 4 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 963dedd664..439d12ac5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2019-02-02 Colin Watson + + *-map tests: Fix compilation error. + * tests/test-array_map.c: Include , for CHAR_BIT. + * tests/test-hash_map.c: Likewise. + * tests/test-linkedhash_map.c: Likewise. + 2019-01-31 Bruno Haible c-strtod, c-strtold: Use the bug fixes for strtod, strtold. diff --git a/tests/test-array_map.c b/tests/test-array_map.c index b26592969a..cd5aceeac3 100644 --- a/tests/test-array_map.c +++ b/tests/test-array_map.c @@ -19,6 +19,7 @@ #include "gl_array_map.h" +#include #include #include diff --git a/tests/test-hash_map.c b/tests/test-hash_map.c index 9fb79fc799..a5007c008d 100644 --- a/tests/test-hash_map.c +++ b/tests/test-hash_map.c @@ -19,6 +19,7 @@ #include "gl_hash_map.h" +#include #include #include diff --git a/tests/test-linkedhash_map.c b/tests/test-linkedhash_map.c index f9fc84b76e..2bebfd4ff6 100644 --- a/tests/test-linkedhash_map.c +++ b/tests/test-linkedhash_map.c @@ -19,6 +19,7 @@ #include "gl_linkedhash_map.h" +#include #include #include -- 2.39.5