]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
update after change to return value of tputs() third argument
authorlukem <lukem@NetBSD.org>
Mon, 4 Oct 1999 23:26:59 +0000 (23:26 +0000)
committerlukem <lukem@NetBSD.org>
Mon, 4 Oct 1999 23:26:59 +0000 (23:26 +0000)
backgammon/common_source/back.h
backgammon/common_source/subs.c
hack/extern.h
hack/hack.termcap.c
larn/extern.h
larn/io.c
robots/main.c
tetris/screen.c
tetris/screen.h

index 4f29b622050f3ba2b82850e88cf8b9be78138433..cee5e6d3ea10089d2187d33c4e0117bb51e41b23 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: back.h,v 1.11 1999/07/26 20:56:03 hubertf Exp $        */
+/*     $NetBSD: back.h,v 1.12 1999/10/04 23:26:59 lukem Exp $  */
 
 /*
  * Copyright (c) 1980, 1993
@@ -133,7 +133,7 @@ extern      int     curc;           /* column position of cursor */
 extern int     begscr;         /* 'beginning' of screen
                                   (not including board) */
 
-void   addbuf __P((int));
+int    addbuf __P((int));
 void   backone __P((int));
 void   bsect __P((int, int, int, int));
 void   buflush __P((void));
index ed1ff4790cd9714750800fb2641adeecacb323ec..32ae1f4ba45e8d6bae2b61ba08db5cf0533ddefe 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: subs.c,v 1.12 1999/09/08 21:45:25 jsm Exp $    */
+/*     $NetBSD: subs.c,v 1.13 1999/10/04 23:26:59 lukem Exp $  */
 
 /*
  * Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)subs.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: subs.c,v 1.12 1999/09/08 21:45:25 jsm Exp $");
+__RCSID("$NetBSD: subs.c,v 1.13 1999/10/04 23:26:59 lukem Exp $");
 #endif
 #endif /* not lint */
 
@@ -73,7 +73,7 @@ errexit(s)
        getout(0);
 }
 
-void
+int
 addbuf(c)
        int     c;
 {
@@ -84,6 +84,7 @@ addbuf(c)
                buffnum = 0;
        }
        outbuff[buffnum] = c;
+       return (0);
 }
 
 void
index 0a207e34c2a1ea0b79cdb98c1a97e0d7a2147489..e9b7e0f17e0f79f507b883536cfb889bf17f92d1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.1 1997/10/19 16:57:28 christos Exp $      */
+/*     $NetBSD: extern.h,v 1.2 1999/10/04 23:27:01 lukem Exp $ */
 
 /*
  * Copyright (c) 1997 Christos Zoulas.  All rights reserved.
@@ -507,7 +507,7 @@ void end_screen __P((void));
 void curs __P((int, int));
 void nocmov __P((int, int));
 void cmov __P((int, int));
-void xputc __P((int));
+int xputc __P((int));
 void xputs __P((char *));
 void cl_end __P((void));
 void clear_screen __P((void));
index 37a63f3cdb48a0270ba4cbb565a2d583a9f8a0ca..2d48698d82c60a4af853444454a2d28fb65153f0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.termcap.c,v 1.8 1999/08/14 16:36:42 tron Exp $    */
+/*     $NetBSD: hack.termcap.c,v 1.9 1999/10/04 23:27:01 lukem Exp $   */
 
 /*
  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
@@ -6,7 +6,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hack.termcap.c,v 1.8 1999/08/14 16:36:42 tron Exp $");
+__RCSID("$NetBSD: hack.termcap.c,v 1.9 1999/10/04 23:27:01 lukem Exp $");
 #endif                         /* not lint */
 
 #include <string.h>
@@ -185,11 +185,11 @@ cmov(x, y)
        curx = x;
 }
 
-void
+int
 xputc(c)
        char            c;
 {
-       (void) fputc(c, stdout);
+       return (fputc(c, stdout));
 }
 
 void
index 17f65bf64cf17cd3ae3929c7b28c5eec88fca158..bb1b26f9ade390da952372111768506ea5683e05 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.1 1997/10/18 20:03:17 christos Exp $      */
+/*     $NetBSD: extern.h,v 1.2 1999/10/04 23:27:02 lukem Exp $ */
 
 /*
  * Copyright (c) 1997 Christos Zoulas.  All rights reserved.
@@ -154,7 +154,7 @@ void cl_dn __P((int, int));
 void standout __P((char *));
 void set_score_output __P((void));
 void lflush __P((void));
-void xputchar __P((int));
+int xputchar __P((int));
 void flush_buf __P((void));
 char *tmcapcnv __P((char *, char *));
 void beep __P((void));
index b003e74b006a00cc9d0e6820c1c81fa0bb06c095..5d9d355edda7b17b13036b01fd78d82366ab122c 100644 (file)
--- a/larn/io.c
+++ b/larn/io.c
@@ -1,4 +1,4 @@
-/*     $NetBSD: io.c,v 1.7 1997/10/18 20:03:26 christos Exp $  */
+/*     $NetBSD: io.c,v 1.8 1999/10/04 23:27:02 lukem Exp $     */
 
 /*
  * io.c                         Larn is copyrighted 1986 by Noah Morgan.
@@ -62,7 +62,7 @@
  */
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: io.c,v 1.7 1997/10/18 20:03:26 christos Exp $");
+__RCSID("$NetBSD: io.c,v 1.8 1999/10/04 23:27:02 lukem Exp $");
 #endif /* not lint */
 
 #include "header.h"
@@ -1047,13 +1047,14 @@ static int      vindex = 0;
 /*
  * xputchar(ch)                Print one character in decoded output buffer.
  */
-void 
+int 
 xputchar(c)
        int             c;
 {
        outbuf[vindex++] = c;
        if (vindex >= BUFBIG)
                flush_buf();
+       return (0);
 }
 
 /*
index af8e8b7aabd89e2dc4c634ac82d4ccdf9d006e63..33eec64a97646549578b2ef29091d5826849cfb0 100644 (file)
@@ -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));
 }
 
 /*
index f27fb5520e48c9e1390fa5360aa13d62e6e565d4..194c4f2f399396dec1ab757caaebb7861bdf1e4e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: screen.c,v 1.12 1999/09/08 21:45:31 jsm Exp $  */
+/*     $NetBSD: screen.c,v 1.13 1999/10/04 23:27:03 lukem Exp $        */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -127,12 +127,12 @@ static char combuf[1024], tbuf[1024];
 /*
  * Routine used by tputs().
  */
-void
+int
 put(c)
        int c;
 {
 
-       (void) putchar(c);
+       return (putchar(c));
 }
 
 /*
index 319e356dbc391e181a6ba8d2fb2c546c934e90fa..d17544cb8bf0585e105b95a873bc606e94572344 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: screen.h,v 1.3 1997/10/14 01:14:34 lukem Exp $ */
+/*     $NetBSD: screen.h,v 1.4 1999/10/04 23:27:03 lukem Exp $ */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -49,7 +49,7 @@ char *SOstr;                  /* begin standout mode */
  */
 #define        putpad(s)       tputs(s, 1, put)
 
-void   put __P((int));         /* just calls putchar; for tputs */
+int    put __P((int));         /* just calls putchar; for tputs */
 void   scr_clear __P((void));
 void   scr_end __P((void));
 void   scr_init __P((void));