Increase "SBSIZE" to 60K and "symsiz" to 1.5K to allow more defined symbols
authorRobert R. Henry <rrh@ucbvax.Berkeley.EDU>
Wed, 22 Sep 1982 23:56:11 +0000 (15:56 -0800)
committerRobert R. Henry <rrh@ucbvax.Berkeley.EDU>
Wed, 22 Sep 1982 23:56:11 +0000 (15:56 -0800)
so that the kernel may be compiled

SCCS-vsn: old/cpp/cpp.c 1.3

usr/src/old/cpp/cpp.c

index c12bd93..9678baf 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)cpp.c 1.2 %G%";
+static char sccsid[] = "@(#)cpp.c 1.3 %G%";
 #endif lint
 
 #ifdef FLEXNAMES
 #endif lint
 
 #ifdef FLEXNAMES
@@ -109,7 +109,7 @@ char *ptrtab;
 
 char buffer[NCPS+BUFSIZ+BUFSIZ+NCPS];
 
 
 char buffer[NCPS+BUFSIZ+BUFSIZ+NCPS];
 
-# define SBSIZE 48000          /* std = 12000, wnj aug 1979 */
+# define SBSIZE 60000          /* std = 12000, wnj aug 1979 */
 char   sbf[SBSIZE];
 char   *savch  = sbf;
 
 char   sbf[SBSIZE];
 char   *savch  = sbf;
 
@@ -175,7 +175,7 @@ static jmp_buf env;
 extern FILE *_f[];
 # define symsiz 500
 # else
 extern FILE *_f[];
 # define symsiz 500
 # else
-# define symsiz 1000           /* std = 500, wnj aug 1979 */
+# define symsiz 1500           /* std = 500, wnj aug 1979 */
 # endif
 STATIC struct symtab stab[symsiz];
 
 # endif
 STATIC struct symtab stab[symsiz];