Add the sizes to the extern array declarations. This may not be
necessary, but it's safe and reduces unnecessary divergence. From OpenBSD.
This commit is contained in:
parent
a03fcca33d
commit
1958cbf73e
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: monop.ext,v 1.7 2004/01/27 20:30:30 jsm Exp $ */
|
||||
/* $NetBSD: monop.ext,v 1.8 2008/02/20 04:50:12 dholland Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1980, 1993
|
||||
@ -44,14 +44,14 @@ extern void (*const func[])(void);
|
||||
|
||||
extern DECK deck[2];
|
||||
|
||||
extern MON mon[];
|
||||
extern MON mon[N_MON];
|
||||
|
||||
extern PLAY *play, *cur_p;
|
||||
|
||||
extern PROP prop[];
|
||||
extern PROP prop[N_PROP];
|
||||
|
||||
extern RR_S rr[];
|
||||
extern RR_S rr[N_RR];
|
||||
|
||||
extern SQUARE board[];
|
||||
extern SQUARE board[N_SQRS + 1];
|
||||
|
||||
extern UTIL_S util[];
|
||||
extern UTIL_S util[2];
|
||||
|
Loading…
x
Reference in New Issue
Block a user