*** empty log message ***

This commit is contained in:
Peter Wemm 1998-04-27 04:26:56 +00:00
parent 5417a1a44a
commit 30bdeb1201
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35473
3 changed files with 11 additions and 11 deletions

View File

@ -35,4 +35,4 @@
#include "externs.h"
int dtab[];
extern int dtab[];

View File

@ -229,7 +229,7 @@ struct scenario {
char *name; /* 14 */
struct ship ship[NSHIP]; /* 16 */
};
struct scenario scene[];
extern struct scenario scene[];
int nscene;
struct shipspecs {
@ -253,7 +253,7 @@ struct shipspecs {
char rig4;
short pts;
};
struct shipspecs specs[];
extern struct shipspecs specs[];
struct scenario *cc; /* the current scenario */
struct ship *ls; /* &cc->ship[cc->vessels] */
@ -278,15 +278,15 @@ char HDTrake[9][10];
char QUAL[9][5];
char MT[9][3];
char *countryname[];
char *classname[];
char *directionname[];
char *qualname[];
char loadname[];
extern char *countryname[];
extern char *classname[];
extern char *directionname[];
extern char *qualname[];
extern char loadname[];
char rangeofshot[];
extern char rangeofshot[];
char dr[], dc[];
extern char dr[], dc[];
int winddir;
int windspeed;

View File

@ -107,7 +107,7 @@ char loaded, fired, changed, repaired;
char dont_adjust;
int viewrow, viewcol;
char movebuf[sizeof SHIP(0)->file->movebuf];
char version[];
extern char version[];
int player;
struct ship *ms; /* memorial structure, &cc->ship[player] */
struct File *mf; /* ms->file */