add main() prototype

This commit is contained in:
hubertf 1998-09-11 14:51:18 +00:00
parent 441ff4f749
commit 4d8c1c95f9
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.9 1998/08/24 22:07:37 hubertf Exp $ */
/* $NetBSD: main.c,v 1.10 1998/09/11 14:51:18 hubertf Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -48,7 +48,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93";
#else
__RCSID("$NetBSD: main.c,v 1.9 1998/08/24 22:07:37 hubertf Exp $");
__RCSID("$NetBSD: main.c,v 1.10 1998/09/11 14:51:18 hubertf Exp $");
#endif
#endif /* not lint */
@ -62,6 +62,8 @@ __RCSID("$NetBSD: main.c,v 1.9 1998/08/24 22:07:37 hubertf Exp $");
#include "hdr.h"
#include "extern.h"
int main __P((int, char **));
int
main(argc, argv)
int argc;