From: Jonathan Nieder Date: Sat, 14 Dec 2013 02:06:40 +0000 (-0800) Subject: test-hashmap.c: drop unnecessary #includes X-Git-Tag: v2.0.0-rc0~166^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8fa59b9081d90299aa5b41412bf93e8856a612b;p=git test-hashmap.c: drop unnecessary #includes Per Documentation/CodingGuidelines most C files in git start with a #include of git-compat-util.h or another header file that includes it, such as cache.h or builtin.h. This file doesn't need anything beyond "git-compat-util.h", so use that. Remove a #include of the system header since it is already included by "git-compat-util.h". Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/test-hashmap.c b/test-hashmap.c index 7e86f886d8..f5183fb9e8 100644 --- a/test-hashmap.c +++ b/test-hashmap.c @@ -1,6 +1,5 @@ -#include "cache.h" +#include "git-compat-util.h" #include "hashmap.h" -#include struct test_entry {