diff options
author | Junio C Hamano <junkio@cox.net> | 2005-04-17 09:53:35 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-17 09:53:35 -0700 |
commit | 8f41523fc1a8cd127ff39fa111b3b5bb5105cc84 (patch) | |
tree | 09a4bda3819aee51dc12935ef7c5d0ecdef7856b /show-diff.c | |
parent | e44794706eeb57f2ee38ed1604821aa38b8ad9d2 (diff) | |
download | git-8f41523fc1a8cd127ff39fa111b3b5bb5105cc84.tar.gz |
[PATCH] show-diff.c: do not include unused header file
This is my bad. I added #include <ctype.h> to the file,
which I ended up not using and failed to remove it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'show-diff.c')
-rw-r--r-- | show-diff.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/show-diff.c b/show-diff.c index 0af2f1051e..8a66e59cf5 100644 --- a/show-diff.c +++ b/show-diff.c @@ -4,7 +4,6 @@ * Copyright (C) Linus Torvalds, 2005 */ #include "cache.h" -#include <ctype.h> static char *diff_cmd = "diff -L '%s' -u -N - '%s'"; |