Add missing static keywords to tail(1)
This commit is contained in:
parent
973aa6bc58
commit
c7c497f1c5
@ -66,9 +66,9 @@ static void set_events(file_info_t *files);
|
||||
#define USE_KQUEUE 1
|
||||
#define ADD_EVENTS 2
|
||||
|
||||
struct kevent *ev;
|
||||
int action = USE_SLEEP;
|
||||
int kq;
|
||||
static struct kevent *ev;
|
||||
static int action = USE_SLEEP;
|
||||
static int kq;
|
||||
|
||||
static const file_info_t *last;
|
||||
|
||||
|
@ -58,7 +58,7 @@ static const char sccsid[] = "@(#)tail.c 8.1 (Berkeley) 6/6/93";
|
||||
|
||||
int Fflag, fflag, qflag, rflag, rval, no_files;
|
||||
|
||||
file_info_t *files;
|
||||
static file_info_t *files;
|
||||
|
||||
static void obsolete(char **);
|
||||
static void usage(void);
|
||||
|
Loading…
Reference in New Issue
Block a user