diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-16 14:00:16 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-16 14:00:16 -0800 |
commit | f342afafceb16b29a9b8718c5f42afaaf6291d78 (patch) | |
tree | c05e1438de70445b9583f0694d05cdc4f25d20dd /ctype.c | |
parent | e6d88ca87cbb3d89d639a3ee769486f44f9a33b8 (diff) | |
parent | 43ccdf56ec5c92478361a0eb94b91c535fd4d2bd (diff) | |
download | git-f342afafceb16b29a9b8718c5f42afaaf6291d78.tar.gz git-f342afafceb16b29a9b8718c5f42afaaf6291d78.tar.xz |
Merge branch 'nk/ctype-for-perf' into maint
* nk/ctype-for-perf:
ctype: implement islower/isupper macro
ctype.c only wants git-compat-util.h
Diffstat (limited to 'ctype.c')
-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, |