switch source tree from k&r to c99

This commit is contained in:
nhmall
2021-01-26 21:06:16 -05:00
parent a2a9cb7b4f
commit f963c5aca7
232 changed files with 12099 additions and 17782 deletions

View File

@@ -17,7 +17,7 @@
#endif
#ifdef TEXT_TOMBSTONE
static void FDECL(center, (int, char *));
static void center(int, char *);
#ifndef NH320_DEDICATION
/* A normal tombstone for end of game display. */
@@ -69,9 +69,7 @@ static const char *rip_txt[] = {
#define YEAR_LINE 12 /* *char[] line # for year */
static void
center(line, text)
int line;
char *text;
center(int line, char *text)
{
register char *ip, *op;
ip = text;
@@ -81,10 +79,7 @@ char *text;
}
void
genl_outrip(tmpwin, how, when)
winid tmpwin;
int how;
time_t when;
genl_outrip(winid tmpwin, int how, time_t when)
{
register char **dp;
register char *dpx;