dbtoman: Change to ANSI function definitions

This commit is contained in:
Peter Howkins
2018-06-28 03:51:33 +01:00
parent b286be89d0
commit ed5d952294
4 changed files with 6 additions and 6 deletions

View File

@@ -125,7 +125,7 @@ static char *br_help_msg[] = {
/* ______________________________________________________________________ */
void
Browse()
Browse(void)
{
char buf[256], *cmd, **av, **sv, *cmapfile, *sdatafile;
char *Prompt;
@@ -186,7 +186,7 @@ Browse()
if (av[1] && isdigit(*av[1])) {
n = atoi(av[1]);
if (n < ce->ndcont) {
printf(ce->dcont[n]);
printf("%s", ce->dcont[n]);
fputs("\n", stdout);
}
else if (ce->ndcont == 0)