diff options
| author | Namhyung Kim <namhyung.kim@lge.com> | 2012-02-10 11:13:30 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2012-02-10 12:53:55 -0800 |
| commit | 1a191a22959b367e2867d78f89a363fdf69afe3b (patch) | |
| tree | 14552be344e62c754228a3fc46c9dbb959da70b5 | |
| parent | 828ea97de486c1693d6e4f2c7347acb50235a85d (diff) | |
| download | git-1a191a22959b367e2867d78f89a363fdf69afe3b.tar.gz | |
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>
| -rw-r--r-- | ctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |
