summaryrefslogtreecommitdiffstats
path: root/trek/dock.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>1997-10-12 21:24:24 +0000
committerchristos <christos@NetBSD.org>1997-10-12 21:24:24 +0000
commit634cb6ceab3191623a3daed5e953821e3f37a4cb (patch)
tree2bb707d4d2f4e28a241cac2e70f7392be0acb329 /trek/dock.c
parenta77b3f8edc13dc6efdbcf80e336689cfa1de08ab (diff)
downloadbsdgames-darwin-634cb6ceab3191623a3daed5e953821e3f37a4cb.tar.gz
bsdgames-darwin-634cb6ceab3191623a3daed5e953821e3f37a4cb.tar.zst
bsdgames-darwin-634cb6ceab3191623a3daed5e953821e3f37a4cb.zip
Warnsify and remove local implementations of libc functions.
Diffstat (limited to 'trek/dock.c')
-rw-r--r--trek/dock.c40
1 files changed, 26 insertions, 14 deletions
diff --git a/trek/dock.c b/trek/dock.c
index 7dcc1f52..74d1ea7c 100644
--- a/trek/dock.c
+++ b/trek/dock.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dock.c,v 1.3 1995/04/22 10:58:45 cgd Exp $ */
+/* $NetBSD: dock.c,v 1.4 1997/10/12 21:24:41 christos Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -33,15 +33,17 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)dock.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: dock.c,v 1.3 1995/04/22 10:58:45 cgd Exp $";
+__RCSID("$NetBSD: dock.c,v 1.4 1997/10/12 21:24:41 christos Exp $");
#endif
#endif /* not lint */
-# include "trek.h"
+#include <stdio.h>
+#include "trek.h"
/*
** DOCK TO STARBASE
@@ -58,14 +60,19 @@ static char rcsid[] = "$NetBSD: dock.c,v 1.3 1995/04/22 10:58:45 cgd Exp $";
** are docked.
*/
-dock()
+/*ARGSUSED*/
+void
+dock(v)
+ int v;
{
- register int i, j;
- int ok;
- register struct event *e;
+ int i, j;
+ int ok;
+ struct event *e;
- if (Ship.cond == DOCKED)
- return (printf("Chekov: But captain, we are already docked\n"));
+ if (Ship.cond == DOCKED) {
+ printf("Chekov: But captain, we are already docked\n");
+ return;
+ }
/* check for ok to dock, i.e., adjacent to a starbase */
ok = 0;
for (i = Ship.sectx - 1; i <= Ship.sectx + 1 && !ok; i++)
@@ -83,8 +90,10 @@ dock()
}
}
}
- if (!ok)
- return (printf("Chekov: But captain, we are not adjacent to a starbase.\n"));
+ if (!ok) {
+ printf("Chekov: But captain, we are not adjacent to a starbase.\n");
+ return;
+ }
/* restore resources */
Ship.energy = Param.energy;
@@ -125,10 +134,13 @@ dock()
** is to reschedule any damages so that they will take longer.
*/
-undock()
+/*ARGSUSED*/
+void
+undock(v)
+ int v;
{
- register struct event *e;
- register int i;
+ struct event *e;
+ int i;
if (Ship.cond != DOCKED)
{