diff --git a/usr.bin/tput/tput.c b/usr.bin/tput/tput.c index 8da0be7b7986..cfc5be69f385 100644 --- a/usr.bin/tput/tput.c +++ b/usr.bin/tput/tput.c @@ -49,9 +49,10 @@ static char sccsid[] = "@(#)tput.c 8.2 (Berkeley) 3/19/94"; #include #include +#define outc putchar + static void prlongname __P((char *)); static void setospeed __P((void)); -static void outc __P((int)); static void usage __P((void)); static char **process __P((char *, char *, char **)); @@ -211,13 +212,6 @@ setospeed() ospeed = cfgetospeed(&t); } -static void -outc(c) - int c; -{ - (void)putchar(c); -} - static void usage() {