]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/dcrept.c
unstr: Check that the input filename fits in the buffer.
[bsdgames-darwin.git] / trek / dcrept.c
index 0c6b55276eab4c99c4bc4fa1b7946ef5801c0314..eebd0349bb65610f29b53a2ebf198bfca357649e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dcrept.c,v 1.3 1995/04/22 10:58:43 cgd Exp $   */
+/*     $NetBSD: dcrept.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.
  *
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)dcrept.c   8.1 (Berkeley) 5/31/93";
 #else
-static char rcsid[] = "$NetBSD: dcrept.c,v 1.3 1995/04/22 10:58:43 cgd Exp $";
+__RCSID("$NetBSD: dcrept.c,v 1.10 2009/05/24 22:55:03 dholland Exp $");
 #endif
 #endif /* not lint */
 
-# include      "trek.h"
+#include <stdio.h>
+#include "trek.h"
 
 /*
 **  damage control report
@@ -55,21 +53,20 @@ static char rcsid[] = "$NetBSD: dcrept.c,v 1.3 1995/04/22 10:58:43 cgd Exp $";
 **     fix things if you are docked.
 */
 
-dcrept()
+/*ARGSUSED*/
+void
+dcrept(int v __unused)
 {
-       register int            i, f;
-       double                  x;
-       double                  m1, m2;
-       register struct event   *e;
+       int             i, f;
+       double          x;
+       double          m1, m2;
+       struct event    *e;
 
        /* set up the magic factors to output the time till fixed */
-       if (Ship.cond == DOCKED)
-       {
+       if (Ship.cond == DOCKED) {
                m1 = 1.0 / Param.dockfac;
                m2 = 1.0;
-       }
-       else
-       {
+       } else {
                m1 = 1.0;
                m2 = Param.dockfac;
        }
@@ -77,15 +74,13 @@ dcrept()
        f = 1;
 
        /* scan for damages */
-       for (i = 0; i < MAXEVENTS; i++)
-       {
+       for (i = 0; i < MAXEVENTS; i++) {
                e = &Event[i];
                if (e->evcode != E_FIXDV)
                        continue;
 
                /* output the title first time */
-               if (f)
-               {
+               if (f) {
                        printf("\t\t\t  repair times\n");
                        printf("device\t\t\tin flight  docked\n");
                        f = 0;
@@ -94,7 +89,8 @@ dcrept()
                /* compute time till fixed, then adjust by the magic factors */
                x = e->date - Now.date;
                printf("%-24s%7.2f  %7.2f\n",
-                       Device[e->systemname].name, x * m1 + 0.005, x * m2 + 0.005);
+                       Device[e->systemname].name, x * m1 + 0.005,
+                       x * m2 + 0.005);
 
                /* do a little consistancy checking */
        }