X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/462fca95471224f85b85be911e72faee16cd1597..65dc63694f4b73fa9ab999ec34c932de770f8457:/trek/dcrept.c?ds=sidebyside diff --git a/trek/dcrept.c b/trek/dcrept.c index 38d247ac..eebd0349 100644 --- a/trek/dcrept.c +++ b/trek/dcrept.c @@ -1,6 +1,8 @@ +/* $NetBSD: dcrept.c,v 1.10 2009/05/24 22:55:03 dholland Exp $ */ + /* - * Copyright (c) 1980 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1980, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -10,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. * @@ -31,12 +29,17 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> #ifndef lint -/*static char sccsid[] = "from: @(#)dcrept.c 5.4 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: dcrept.c,v 1.2 1993/08/01 18:50:43 mycroft Exp $"; +#if 0 +static char sccsid[] = "@(#)dcrept.c 8.1 (Berkeley) 5/31/93"; +#else +__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 @@ -50,21 +53,20 @@ static char rcsid[] = "$Id: dcrept.c,v 1.2 1993/08/01 18:50:43 mycroft 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; } @@ -72,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; @@ -89,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 */ }