mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 23:05:49 +01:00
Staticize more functions
This commit is contained in:
parent
fd4e4d608f
commit
1bf1478a9f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61323
@ -360,14 +360,16 @@ printtype(mode)
|
||||
}
|
||||
|
||||
#ifdef COLORLS
|
||||
int putch(c)
|
||||
static int
|
||||
putch(c)
|
||||
int c;
|
||||
{
|
||||
(void) putchar(c);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int writech(c)
|
||||
static int
|
||||
writech(c)
|
||||
int c;
|
||||
{
|
||||
char tmp = c;
|
||||
@ -376,7 +378,7 @@ int writech(c)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
printcolor(c)
|
||||
Colors c;
|
||||
{
|
||||
@ -478,7 +480,8 @@ char *cs;
|
||||
}
|
||||
}
|
||||
|
||||
void colorquit(sig)
|
||||
void
|
||||
colorquit(sig)
|
||||
int sig;
|
||||
{
|
||||
endcolor(sig);
|
||||
|
Loading…
Reference in New Issue
Block a user