X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/b2ca333c4ad541145141d538923e93ec3464e29d..65dc63694f4b73fa9ab999ec34c932de770f8457:/trek/dcrept.c diff --git a/trek/dcrept.c b/trek/dcrept.c index 0c6b5527..eebd0349 100644 --- a/trek/dcrept.c +++ b/trek/dcrept.c @@ -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 @@ -12,11 +12,7 @@ * 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. * @@ -33,15 +29,17 @@ * SUCH DAMAGE. */ +#include #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 +#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 */ }