Add missing static keywords to tail(1)

This commit is contained in:
Ed Schouten 2011-11-06 08:17:17 +00:00
parent 973aa6bc58
commit c7c497f1c5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227184
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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);