summary refs log tree commit diff
path: root/ctype.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2012-02-10 11:13:30 +0900
committerJunio C Hamano <gitster@pobox.com>2012-02-10 12:53:55 -0800
commit1a191a22959b367e2867d78f89a363fdf69afe3b (patch)
tree14552be344e62c754228a3fc46c9dbb959da70b5 /ctype.c
parent828ea97de486c1693d6e4f2c7347acb50235a85d (diff)
ctype.c only wants git-compat-util.h
The implementation of sane ctype macros only depends on symbols in
git-compat-util.h not cache.h

Signed-off-by: Namhyung Kim <namhyung.kim@lge.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ctype.c')
-rw-r--r--ctype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctype.c b/ctype.c
index b5d856fd26..af722f957f 100644
--- a/ctype.c
+++ b/ctype.c
@@ -3,7 +3,7 @@
  *
  * No surprises, and works with signed and unsigned chars.
  */
-#include "cache.h"
+#include "git-compat-util.h"
 
 enum {
 	S = GIT_SPACE,