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:
parent
303b5cebb7
commit
8b25734b05
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user