Add a coverage exclusion.

This commit is contained in:
Eric S. Raymond 2022-04-06 22:27:14 -04:00
parent 00cbf464b5
commit 6f7c5743c6

View file

@ -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 */