From f30cf8615c698739b628e4fa3f1d2add3726bb9d Mon Sep 17 00:00:00 2001 From: ache Date: Tue, 24 Oct 1995 06:15:05 +0000 Subject: Add setlocale LC_CTYPE --- usr.bin/col/col.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'usr.bin/col') diff --git a/usr.bin/col/col.c b/usr.bin/col/col.c index 719fef7..37dc304 100644 --- a/usr.bin/col/col.c +++ b/usr.bin/col/col.c @@ -49,6 +49,7 @@ static char sccsid[] = "@(#)col.c 8.3 (Berkeley) 4/2/94"; #include #include #include +#include #define BS '\b' /* backspace */ #define TAB '\t' /* tab */ @@ -128,6 +129,8 @@ main(argc, argv) int nflushd_lines; /* number of lines that were flushed */ int adjust, opt, warned; + (void) setlocale(LC_CTYPE, ""); + max_bufd_lines = 128; compress_spaces = 1; /* compress spaces into tabs */ while ((opt = getopt(argc, argv, "bfhl:x")) != EOF) -- cgit v1.1