mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Add 'extern' to arrays that are declared and initialised in other files.
Who writes code like this?!
This commit is contained in:
parent
4772ce29e0
commit
99dd1e3479
1 changed files with 2 additions and 2 deletions
|
|
@ -50,8 +50,8 @@ static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
|
|||
#define MVPAUSE 5 /* time to sleep when stuck */
|
||||
#define MAXUSERS 35 /* maximum number of users */
|
||||
|
||||
char *instr[]; /* text of instructions */
|
||||
char *message[]; /* update message */
|
||||
extern char *instr[]; /* text of instructions */
|
||||
extern char *message[]; /* update message */
|
||||
char ospeed; /* tty output speed */
|
||||
|
||||
char *helpm[] = { /* help message */
|
||||
|
|
|
|||
Loading…
Reference in a new issue