]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/checkcond.c
games/battlestar: Replace snprintf(3) with strlcpy(3) for better performance.
[bsdgames-darwin.git] / trek / checkcond.c
index 9a969d12c06fecf46e1d285a89b6e6dd5263becd..a6251099ded0093a8334db70175e2f4167474e2b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: checkcond.c,v 1.5 2003/08/07 09:37:50 agc Exp $        */
+/*     $NetBSD: checkcond.c,v 1.7 2009/05/24 21:44:56 dholland Exp $   */
 
 /*
  * Copyright (c) 1980, 1993
 
 /*
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)checkcond.c        8.1 (Berkeley) 5/31/93";
 #else
 #if 0
 static char sccsid[] = "@(#)checkcond.c        8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: checkcond.c,v 1.5 2003/08/07 09:37:50 agc Exp $");
+__RCSID("$NetBSD: checkcond.c,v 1.7 2009/05/24 21:44:56 dholland Exp $");
 #endif
 #endif /* not lint */
 
 #endif
 #endif /* not lint */
 
@@ -66,7 +66,7 @@ __RCSID("$NetBSD: checkcond.c,v 1.5 2003/08/07 09:37:50 agc Exp $");
 */
 
 void
 */
 
 void
-checkcond()
+checkcond(void)
 {
        /* see if we are still alive and well */
        if (Ship.reserves < 0.0)
 {
        /* see if we are still alive and well */
        if (Ship.reserves < 0.0)
@@ -91,13 +91,11 @@ checkcond()
        if (Ship.cond == DOCKED)
                return;
 
        if (Ship.cond == DOCKED)
                return;
 
-       if (Etc.nkling > 0)
-       {
+       if (Etc.nkling > 0) {
                Ship.cond = RED;
                return;
        }
                Ship.cond = RED;
                return;
        }
-       if (Ship.energy < Param.energylow)
-       {
+       if (Ship.energy < Param.energylow) {
                Ship.cond = YELLOW;
                return;
        }
                Ship.cond = YELLOW;
                return;
        }