Staticize more functions

This commit is contained in:
ache 2000-06-06 07:19:50 +00:00
parent 8f5fd01ed6
commit 5659bb7484

View File

@ -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);