Add missing 'static' on two routines, so they match their declarations.

PR:		29363 (a small part of)
Submitted by:	dinoex
MFC after:	3 weeks
This commit is contained in:
gad 2003-03-03 15:31:35 +00:00
parent 303b5cebb7
commit 8b25734b05

View File

@ -1262,7 +1262,7 @@ get_pid(const char *pid_file)
}
/* Skip Over Blanks */
char *
static char *
sob(char *p)
{
while (p && *p && isspace(*p))
@ -1271,7 +1271,7 @@ sob(char *p)
}
/* Skip Over Non-Blanks */
char *
static char *
son(char *p)
{
while (p && *p && !isspace(*p))