Add missing static keywords to rusers(1)

This commit is contained in:
Ed Schouten 2011-11-06 08:16:47 +00:00
parent 5988030025
commit 6ebcee2952
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227179

View File

@ -56,10 +56,10 @@ __FBSDID("$FreeBSD$");
#define HOST_WIDTH 20
#define LINE_WIDTH 15
int longopt;
int allopt;
static int longopt;
static int allopt;
struct host_list {
static struct host_list {
struct host_list *next;
struct in_addr addr;
} *hosts;