summaryrefslogtreecommitdiffstats
path: root/adventure/main.c
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1998-09-11 14:51:18 +0000
committerhubertf <hubertf@NetBSD.org>1998-09-11 14:51:18 +0000
commitb20964286b4703b6cabd3b6c981ff841e2b045e5 (patch)
tree4f993ca8211b8cd33125935a15fbd1d9e4af0c6f /adventure/main.c
parent3d17b7e6f34c8f078bdf370708f38f9e83ecf394 (diff)
downloadbsdgames-darwin-b20964286b4703b6cabd3b6c981ff841e2b045e5.tar.gz
bsdgames-darwin-b20964286b4703b6cabd3b6c981ff841e2b045e5.tar.zst
bsdgames-darwin-b20964286b4703b6cabd3b6c981ff841e2b045e5.zip
add main() prototype
Diffstat (limited to 'adventure/main.c')
-rw-r--r--adventure/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/adventure/main.c b/adventure/main.c
index 3285ab70..2577d567 100644
--- a/adventure/main.c
+++ b/adventure/main.c
@@ -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;