summaryrefslogtreecommitdiffstats
path: root/arithmetic
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1996-03-21 18:30:19 +0000
committerjtc <jtc@NetBSD.org>1996-03-21 18:30:19 +0000
commit926662e765d3d4833618f343458f8279494a6604 (patch)
tree3d01e8ec3833cb2acab76ed64e33ab2d319c2956 /arithmetic
parentfb4bf232f26bcf58854d0ad1bca260452ef50301 (diff)
downloadbsdgames-darwin-926662e765d3d4833618f343458f8279494a6604.tar.gz
bsdgames-darwin-926662e765d3d4833618f343458f8279494a6604.tar.zst
bsdgames-darwin-926662e765d3d4833618f343458f8279494a6604.zip
Be pedantic, main() returns int in Standard C.
Diffstat (limited to 'arithmetic')
-rw-r--r--arithmetic/arithmetic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arithmetic/arithmetic.c b/arithmetic/arithmetic.c
index c382cc4f..6cda404f 100644
--- a/arithmetic/arithmetic.c
+++ b/arithmetic/arithmetic.c
@@ -1,4 +1,4 @@
-/* $NetBSD: arithmetic.c,v 1.5 1995/03/21 11:59:32 cgd Exp $ */
+/* $NetBSD: arithmetic.c,v 1.6 1996/03/21 18:30:19 jtc Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -46,7 +46,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)arithmetic.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: arithmetic.c,v 1.5 1995/03/21 11:59:32 cgd Exp $";
+static char rcsid[] = "$NetBSD: arithmetic.c,v 1.6 1996/03/21 18:30:19 jtc Exp $";
#endif
#endif /* not lint */
@@ -101,7 +101,7 @@ time_t qtime;
* bound is 10. After every NQUESTS questions, statistics on the performance
* so far are printed.
*/
-void
+int
main(argc, argv)
int argc;
char **argv;