diff options
author | ache <ache@FreeBSD.org> | 2000-06-06 07:19:50 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-06-06 07:19:50 +0000 |
commit | 5659bb748429ddec1ff8ef3cfd911bb4c1074f39 (patch) | |
tree | 2d3f64109466c7783cd61f200c77f9ed4f5c67ba /bin | |
parent | 8f5fd01ed689cbf04297e38f5cfdbe08dc330762 (diff) | |
download | FreeBSD-src-5659bb748429ddec1ff8ef3cfd911bb4c1074f39.zip FreeBSD-src-5659bb748429ddec1ff8ef3cfd911bb4c1074f39.tar.gz |
Staticize more functions
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ls/print.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c index f439de4..d4a9d6e 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -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); |