summaryrefslogtreecommitdiffstats
path: root/sail/extern.h
diff options
context:
space:
mode:
authorjwise <jwise@NetBSD.org>2001-01-04 06:16:51 +0000
committerjwise <jwise@NetBSD.org>2001-01-04 06:16:51 +0000
commitb2c40c5606888fb0f424ed2d7c7cbfcc747ae9bf (patch)
treeb3f003154f75ea966299219cdfa532a3bd903636 /sail/extern.h
parent4bb910aa025d0c056f01479839fb4aac351c6f60 (diff)
downloadbsdgames-darwin-b2c40c5606888fb0f424ed2d7c7cbfcc747ae9bf.tar.gz
bsdgames-darwin-b2c40c5606888fb0f424ed2d7c7cbfcc747ae9bf.zip
Normalize signature of ship handling functions -- struct ship * from and
struct ship * to are now always the first two args.
Diffstat (limited to 'sail/extern.h')
-rw-r--r--sail/extern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sail/extern.h b/sail/extern.h
index 0d43c98e..21ea2428 100644
--- a/sail/extern.h
+++ b/sail/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.23 2001/01/04 05:34:56 jwise Exp $ */
+/* $NetBSD: extern.h,v 1.24 2001/01/04 06:16:51 jwise Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -293,7 +293,7 @@ extern int people;
extern int hasdriver;
/* assorted.c */
-void table (int, int, int, struct ship *, struct ship *, int);
+void table (struct ship *, struct ship *, int, int, int, int);
void Cleansnag (struct ship *, struct ship *, int, int);
/* dr_1.c */
@@ -321,7 +321,7 @@ void ungrap (struct ship *, struct ship *);
void grap (struct ship *, struct ship *);
/* dr_5.c */
-void subtract (struct ship *, int, int [3], struct ship *, int);
+void subtract (struct ship *, struct ship *, int, int [3], int);
int mensent (struct ship *, struct ship *, int[3], struct ship **, int *,
int);