From 1c4b6604126781361fe89d88ace70f53079fbab5 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Sun, 14 Sep 2014 00:40:45 -0700 Subject: cleanups: ensure that git-compat-util.h is included first CodingGuidelines states that the first #include in C files should be git-compat-util.h or another header file that includes it, such as cache.h or builtin.h. Signed-off-by: David Aguilar Signed-off-by: Junio C Hamano --- test-regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test-regex.c') diff --git a/test-regex.c b/test-regex.c index b5bfd5413..0dc598ecd 100644 --- a/test-regex.c +++ b/test-regex.c @@ -1,4 +1,4 @@ -#include +#include "git-compat-util.h" int main(int argc, char **argv) { -- cgit v1.2.1