]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - battlestar/fly.c
Allow for the bathing goddess in ravage(). From OpenBSD.
[bsdgames-darwin.git] / battlestar / fly.c
index ebe292a15230f790c24efb69e517b65a2fff08c2..0182f103b94e0f5b1f4227483549d0e6d2c929aa 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: fly.c,v 1.6 1997/10/11 02:07:20 lukem Exp $    */
+/*     $NetBSD: fly.c,v 1.8 1999/09/08 21:45:25 jsm Exp $      */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)fly.c      8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: fly.c,v 1.6 1997/10/11 02:07:20 lukem Exp $");
+__RCSID("$NetBSD: fly.c,v 1.8 1999/09/08 21:45:25 jsm Exp $");
 #endif
 #endif                         /* not lint */
 
@@ -59,7 +59,7 @@ sig_t   oldsig;
 
 void
 succumb(dummy)
-       int     dummy;
+       int     dummy __attribute__((__unused__));
 {
        if (oldsig == SIG_DFL) {
                endfly();
@@ -75,7 +75,7 @@ int
 visual()
 {
        destroyed = 0;
-       if (initscr() == ERR) {
+       if (initscr() == NULL) {
                puts("Whoops!  No more memory...");
                return (0);
        }
@@ -245,7 +245,7 @@ blast()
 
 void
 moveenemy(dummy)
-       int     dummy;
+       int     dummy __attribute__((__unused__));
 {
        double  d;
        int     oldr, oldc;