summaryrefslogtreecommitdiffstats
path: root/interdiff.h
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2020-09-08 09:16:08 +0200
committerJunio C Hamano <gitster@pobox.com>2020-09-09 00:03:26 +0200
commitcdffbdc217aba8a39d786a642d1376a5a605adec (patch)
tree212d466731fac04ad80903848f647a52d9a3bf04 /interdiff.h
parentThirteenth batch (diff)
downloadgit-cdffbdc217aba8a39d786a642d1376a5a605adec.tar.xz
git-cdffbdc217aba8a39d786a642d1376a5a605adec.zip
diff: move show_interdiff() from its own file to diff-lib
show_interdiff() is a relatively small function and not likely to grow larger or more complicated. Rather than dedicating an entire source file to it, relocate it to diff-lib.c which houses other "take two things and compare them" functions meant to be re-used but not so low-level as to reside in the core diff implementation. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'interdiff.h')
-rw-r--r--interdiff.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/interdiff.h b/interdiff.h
deleted file mode 100644
index 01c730a5c9..0000000000
--- a/interdiff.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef INTERDIFF_H
-#define INTERDIFF_H
-
-struct rev_info;
-
-void show_interdiff(struct rev_info *, int indent);
-
-#endif