Add missing static keywords to rwall(1)

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

View file

@ -64,11 +64,11 @@ __FBSDID("$FreeBSD$");
#include <time.h>
#include <unistd.h>
char *mbuf;
static char *mbuf;
static char notty[] = "no tty";
void makemsg(const char *);
static void makemsg(const char *);
static void usage(void);
/* ARGSUSED */
@ -121,7 +121,7 @@ usage(void)
exit(1);
}
void
static void
makemsg(const char *fname)
{
struct tm *lt;