summaryrefslogtreecommitdiff
path: root/ctype.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2012-02-10 02:13:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-02-10 20:53:55 (GMT)
commit1a191a22959b367e2867d78f89a363fdf69afe3b (patch)
tree14552be344e62c754228a3fc46c9dbb959da70b5 /ctype.c
parent828ea97de486c1693d6e4f2c7347acb50235a85d (diff)
downloadgit-1a191a22959b367e2867d78f89a363fdf69afe3b.zip
git-1a191a22959b367e2867d78f89a363fdf69afe3b.tar.gz
git-1a191a22959b367e2867d78f89a363fdf69afe3b.tar.bz2
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 b5d856f..af722f9 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,