From 36a67d38f8e835f867ca232e5baa4965bf1fd405 Mon Sep 17 00:00:00 2001 From: lukem Date: Mon, 4 Oct 1999 23:26:59 +0000 Subject: update after change to return value of tputs() third argument --- robots/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'robots') 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)); } /* -- cgit v1.2.3