summaryrefslogtreecommitdiffstats
path: root/robots
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1999-10-04 23:26:59 +0000
committerlukem <lukem@NetBSD.org>1999-10-04 23:26:59 +0000
commit36a67d38f8e835f867ca232e5baa4965bf1fd405 (patch)
treea4003f08f7ef5a5ccf409deee5a69d166b6d6fb0 /robots
parent66dcf6ac131bfb208ed57aa184d0e385386590ee (diff)
downloadbsdgames-darwin-36a67d38f8e835f867ca232e5baa4965bf1fd405.tar.gz
bsdgames-darwin-36a67d38f8e835f867ca232e5baa4965bf1fd405.tar.zst
bsdgames-darwin-36a67d38f8e835f867ca232e5baa4965bf1fd405.zip
update after change to return value of tputs() third argument
Diffstat (limited to 'robots')
-rw-r--r--robots/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/robots/main.c b/robots/main.c
index af8e8b7a..33eec64a 100644
--- a/robots/main.c
+++ b/robots/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.11 1999/09/12 09:02:22 jsm Exp $ */
+/* $NetBSD: main.c,v 1.12 1999/10/04 23:27:02 lukem Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: main.c,v 1.11 1999/09/12 09:02:22 jsm Exp $");
+__RCSID("$NetBSD: main.c,v 1.12 1999/10/04 23:27:02 lukem Exp $");
#endif
#endif /* not lint */
@@ -193,11 +193,11 @@ main(ac, av)
return(0);
}
-void
+int
__cputchar(ch)
int ch;
{
- (void)putchar(ch);
+ return (putchar(ch));
}
/*