sequencer.h fix placement of #endif

Commit 65850686cf ("rebase -i: rewrite write_basic_state() in C", 2018-08-28) accidentially added new function declarations after the #endif at the end of the include guard. Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Phillip Wood committed Oct 15, 2019 at 10:25 UTC 12bb7a540a39746fd6f62e4d5ffd016a2178bcf7
1 file changed +1 -2
sequencer.h
+1 -2
@@ -195,11 +195,10 @@ void print_commit_summary(struct repository *repo,
195
196 int read_author_script(const char *path, char **name, char **email, char **date,
197 int allow_missing);
198 -#endif
199 -
198 void parse_strategy_opts(struct replay_opts *opts, char *raw_opts);
199 int write_basic_state(struct replay_opts *opts, const char *head_name,
200 struct commit *onto, const char *orig_head);
201 void sequencer_post_commit_cleanup(struct repository *r);
202 int sequencer_get_last_command(struct repository* r,
203 enum replay_action *action);
204 +#endif /* SEQUENCER_H */