Staticize more functions
This commit is contained in:
parent
8f5fd01ed6
commit
5659bb7484
@ -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…
x
Reference in New Issue
Block a user