KNF -> ANSI function declarations

Reviewed by:	md5(1)
This commit is contained in:
Bill Fumerola 2002-02-23 10:35:25 +00:00
parent d911c680ee
commit 578a176b1e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91137

View File

@ -183,9 +183,7 @@ void nomem(void);
void onsig(int);
int
main(argc, argv)
int argc;
char *argv[];
main(int argc, char *argv[])
{
int x, y, h, n;
struct worm *w;
@ -334,14 +332,13 @@ main(argc, argv)
}
void
onsig(signo)
int signo;
onsig(int signo)
{
sig_caught = 1;
}
void
nomem()
nomem(void)
{
errx(1, "not enough memory.");
}