mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add missing static keywords to wall(1)
This commit is contained in:
parent
d11cba9c89
commit
d7698e0766
1 changed files with 4 additions and 4 deletions
|
|
@ -68,14 +68,14 @@ static const char sccsid[] = "@(#)wall.c 8.2 (Berkeley) 11/16/93";
|
|||
static void makemsg(char *);
|
||||
static void usage(void);
|
||||
|
||||
struct wallgroup {
|
||||
static struct wallgroup {
|
||||
struct wallgroup *next;
|
||||
char *name;
|
||||
gid_t gid;
|
||||
} *grouplist;
|
||||
int nobanner;
|
||||
int mbufsize;
|
||||
char *mbuf;
|
||||
static int nobanner;
|
||||
static int mbufsize;
|
||||
static char *mbuf;
|
||||
|
||||
static int
|
||||
ttystat(char *line)
|
||||
|
|
|
|||
Loading…
Reference in a new issue