From 4e3152624610e883fd53f30efa111f89d80ac1e0 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Thu, 30 Apr 1987 16:00:35 -0800 Subject: [PATCH] change max line length to 2048 SCCS-vsn: usr.bin/sort/sort.c 4.12 --- usr/src/usr.bin/sort/sort.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.bin/sort/sort.c b/usr/src/usr.bin/sort/sort.c index 3356689627..78d4240a5b 100644 --- a/usr/src/usr.bin/sort/sort.c +++ b/usr/src/usr.bin/sort/sort.c @@ -1,11 +1,11 @@ -static char *sccsid = "@(#)sort.c 4.11 (Berkeley) %G%"; +static char *sccsid = "@(#)sort.c 4.12 (Berkeley) %G%"; #include #include #include #include #include -#define L 1024 +#define L 2048 #define N 7 #define C 20 #ifndef pdp11 -- 2.20.1