aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-04-17 09:53:35 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-17 09:53:35 -0700
commit8f41523fc1a8cd127ff39fa111b3b5bb5105cc84 (patch)
tree09a4bda3819aee51dc12935ef7c5d0ecdef7856b
parente44794706eeb57f2ee38ed1604821aa38b8ad9d2 (diff)
downloadgit-8f41523fc1a8cd127ff39fa111b3b5bb5105cc84.tar.gz
git-8f41523fc1a8cd127ff39fa111b3b5bb5105cc84.tar.xz
[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>
-rw-r--r--show-diff.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/show-diff.c b/show-diff.c
index 0af2f1051..8a66e59cf 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'";