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 <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
David Aguilar
2014-09-14 00:40:45 -07:00
committed by Junio C Hamano
parent 96db324a73
commit 1c4b660412
9 changed files with 7 additions and 8 deletions

View File

@ -3,8 +3,8 @@
* Fredrik Kuivinen.
* The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
*/
#include "advice.h"
#include "cache.h"
#include "advice.h"
#include "cache-tree.h"
#include "commit.h"
#include "blob.h"