From 6f7c5743c6352bbbf749a9a5dc32e1478e5a950d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 6 Apr 2022 22:27:14 -0400 Subject: [PATCH] Add a coverage exclusion. --- cheat.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cheat.c b/cheat.c index d25e218..7d9474a 100644 --- a/cheat.c +++ b/cheat.c @@ -98,13 +98,18 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } +// LCOV_EXCL_START /* * Ugh...unused, but required for linkage. - * See thje actually useful version of this in main.c + * See the actually useful version of this in main.c */ char *myreadline(const char *prompt) { return readline(prompt); } +// LCOV_EXCL_STOP + +/* end */ + -- 2.31.1