add main() prototype
This commit is contained in:
parent
441ff4f749
commit
4d8c1c95f9
|
@ -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
|
* Copyright (c) 1991, 1993
|
||||||
|
@ -48,7 +48,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993\n\
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93";
|
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93";
|
||||||
#else
|
#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
|
||||||
#endif /* not lint */
|
#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 "hdr.h"
|
||||||
#include "extern.h"
|
#include "extern.h"
|
||||||
|
|
||||||
|
int main __P((int, char **));
|
||||||
|
|
||||||
int
|
int
|
||||||
main(argc, argv)
|
main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
|
|
Loading…
Reference in New Issue