3* size of fixed tables
authorBill Joy <bill@ucbvax.Berkeley.EDU>
Sun, 9 Nov 1980 01:43:04 +0000 (17:43 -0800)
committerBill Joy <bill@ucbvax.Berkeley.EDU>
Sun, 9 Nov 1980 01:43:04 +0000 (17:43 -0800)
SCCS-vsn: usr.bin/ranlib/ranlib.c 4.2

usr/src/usr.bin/ranlib/ranlib.c

index d77b387..1090fc9 100644 (file)
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#)ranlib.c 4.1 %G%";
+static char sccsid[] = "@(#)ranlib.c 4.2 %G%";
 /*
  * ranlib - create table of contents for archive; string table version
  */
 /*
  * ranlib - create table of contents for archive; string table version
  */
@@ -16,10 +16,10 @@ struct      exec    exp;
 FILE   *fi, *fo;
 long   off, oldoff;
 long   atol(), ftell();
 FILE   *fi, *fo;
 long   off, oldoff;
 long   atol(), ftell();
-#define TABSZ  2000
+#define TABSZ  5000
 struct ranlib tab[TABSZ];
 int    tnum;
 struct ranlib tab[TABSZ];
 int    tnum;
-#define        STRTABSZ        25000
+#define        STRTABSZ        75000
 char   tstrtab[STRTABSZ];
 int    tssiz;
 char   *strtab;
 char   tstrtab[STRTABSZ];
 int    tssiz;
 char   *strtab;