]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/impulse.c
adhere to stricter groff checking:
[bsdgames-darwin.git] / trek / impulse.c
index cb4f08b3d4b3fbe2e327fb38b35bef099299eb45..49358bd2e782f29c8c9c927d7e5353c74e1e660a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: impulse.c,v 1.5 1999/09/08 21:45:33 jsm Exp $  */
+/*     $NetBSD: impulse.c,v 1.10 2009/05/24 22:55:03 dholland Exp $    */
 
 /*
  * Copyright (c) 1980, 1993
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
@@ -38,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)impulse.c  8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: impulse.c,v 1.5 1999/09/08 21:45:33 jsm Exp $");
+__RCSID("$NetBSD: impulse.c,v 1.10 2009/05/24 22:55:03 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -52,8 +48,7 @@ __RCSID("$NetBSD: impulse.c,v 1.5 1999/09/08 21:45:33 jsm Exp $");
 
 /*ARGSUSED*/
 void
-impulse(v)
-       int v __attribute__((__unused__));
+impulse(int v __unused)
 {
        int             course;
        int             power;
@@ -72,9 +67,9 @@ impulse(v)
                return;
        power = 20 + 100 * dist;
        percent = 100 * power / Ship.energy + 0.5;
-       if (percent >= 85)
-       {
-               printf("Scotty: That would consume %d%% of our remaining energy.\n",
+       if (percent >= 85) {
+               printf("Scotty: That would consume %d%% of our remaining "
+                      "energy.\n",
                        percent);
                if (!getynpar("Are you sure that is wise"))
                        return;
@@ -82,8 +77,7 @@ impulse(v)
        }
        time = dist / 0.095;
        percent = 100 * time / Now.time + 0.5;
-       if (percent >= 85)
-       {
+       if (percent >= 85) {
                printf("Spock: That would take %d%% of our remaining time.\n",
                        percent);
                if (!getynpar("Are you sure that is wise"))