diff options
author | Linus Torvalds <torvalds@osdl.org> | 2005-10-13 11:03:18 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-14 17:17:27 -0700 |
commit | 4546738b58a0134eef154231b07d60fc174d56e3 (patch) | |
tree | 873d8e5652c06c3891278f33546c437efc209c2d /mailsplit.c | |
parent | d402d5566fdf226697a386dfb9858e5d954e9b91 (diff) | |
download | git-4546738b58a0134eef154231b07d60fc174d56e3.tar.gz git-4546738b58a0134eef154231b07d60fc174d56e3.tar.xz |
Unlocalized isspace and friends
Do our own ctype.h, just to get the sane semantics: we want
locale-independence, _and_ we want the right signed behaviour. Plus we
only use a very small subset of ctype.h anyway (isspace, isalpha,
isdigit and isalnum).
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'mailsplit.c')
-rw-r--r-- | mailsplit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mailsplit.c b/mailsplit.c index 0f8100dcc..189f4ed72 100644 --- a/mailsplit.c +++ b/mailsplit.c @@ -11,7 +11,6 @@ #include <sys/stat.h> #include <string.h> #include <stdio.h> -#include <ctype.h> #include <assert.h> #include "cache.h" |