From 5fe81438b52f8464947e5b27381a898d7451260e Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Mon, 11 Feb 2019 17:16:58 +0000 Subject: sequencer: make sign_off_header a file local symbol Commit d0aaa46fd3 ("commit: move empty message checks to libgit", 2017-11-10) removes the last use of 'sign_off_header' outside of the "sequencer.c" source file. Remove the extern declaration from the header file and mark the definition of the symbol with the static keyword. Signed-off-by: Ramsay Jones Signed-off-by: Junio C Hamano --- sequencer.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'sequencer.h') diff --git a/sequencer.h b/sequencer.h index c5787c6b56..e025deb007 100644 --- a/sequencer.h +++ b/sequencer.h @@ -83,8 +83,6 @@ int check_todo_list(void); int skip_unnecessary_picks(void); int rearrange_squash(void); -extern const char sign_off_header[]; - void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag); void append_conflicts_hint(struct strbuf *msgbuf); int message_is_empty(const struct strbuf *sb, -- cgit v1.2.3