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 --- sigchain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sigchain.c') diff --git a/sigchain.c b/sigchain.c index 1118b99e57..faa375d5d8 100644 --- a/sigchain.c +++ b/sigchain.c @@ -1,5 +1,5 @@ -#include "sigchain.h" #include "cache.h" +#include "sigchain.h" #define SIGCHAIN_MAX_SIGNALS 32 -- cgit v1.2.3