remove manifest constants for NCPString and ASINBUFSIZ, reflecting
authorRobert R. Henry <rrh@ucbvax.Berkeley.EDU>
Sat, 2 Jul 1983 00:47:05 +0000 (16:47 -0800)
committerRobert R. Henry <rrh@ucbvax.Berkeley.EDU>
Sat, 2 Jul 1983 00:47:05 +0000 (16:47 -0800)
the fact that arbitrary length strings are stored in a file

SCCS-vsn: old/as.vax/as.h 4.18
SCCS-vsn: old/as.vax/asscan2.c 4.13

usr/src/old/as.vax/as.h
usr/src/old/as.vax/asscan2.c

index 1d3a2fa..d99fe25 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *     Copyright (c) 1982 Regents of the University of California
 /*
  *     Copyright (c) 1982 Regents of the University of California
- *     @(#)as.h 4.17 %G%
+ *     @(#)as.h 4.18 %G%
  */
 #define        reg     register
 
  */
 #define        reg     register
 
  *     Sizes for character buffers.
  *     what                    size #define name       comments
  *
  *     Sizes for character buffers.
  *     what                    size #define name       comments
  *
- *     source file reads       ASINBUFSIZ              integral of BUFSIZ
- *     string assembly         NCPString               large for .stabs
  *     name assembly           NCPName 
  *     name assembly           NCPName 
- *     string save             STRPOOLDALLOP   
+ *     name save               STRPOOLDALLOP   
  *
  *
- *
- *     -source file reads should be integral of BUFSIZ for efficient reads
- *     -string saving is a simple first fit
+ *     -name saving is a simple first fit
  */
  */
-#ifndef ASINBUFSIZ
-#      define  ASINBUFSIZ      4096
-#endif not ASINBUFSIZ
 #ifndef STRPOOLDALLOP
 #      define STRPOOLDALLOP    8192
 #endif not STRPOOLDALLOP
 #ifndef STRPOOLDALLOP
 #      define STRPOOLDALLOP    8192
 #endif not STRPOOLDALLOP
-#ifndef NCPString
-#      define  NCPString       4080
-#endif not NCPString
 
 #define        NCPName NCPS
 #ifndef NCPS
 
 #define        NCPName NCPS
 #ifndef NCPS
@@ -47,7 +37,7 @@
 /*
  *     Check sizes, and compiler error if sizes botch
  */
 /*
  *     Check sizes, and compiler error if sizes botch
  */
-#if ((STRPOOLDALLOP < NCPString) || (STRPOOLDALLOP < NCPName))
+#if STRPOOLDALLOP < NCPName
        $$$botch with definition sizes
 #endif test botches
 /*
        $$$botch with definition sizes
 #endif test botches
 /*
index 3f33a82..cc254d6 100644 (file)
@@ -2,13 +2,13 @@
  *     Copyright (c) 1982 Regents of the University of California
  */
 #ifndef lint
  *     Copyright (c) 1982 Regents of the University of California
  */
 #ifndef lint
-static char sccsid[] = "@(#)asscan2.c 4.12 %G%";
+static char sccsid[] = "@(#)asscan2.c 4.13 %G%";
 #endif not lint
 
 #include "asscanl.h"
 
 static inttoktype      oval = NL;
 #endif not lint
 
 #include "asscanl.h"
 
 static inttoktype      oval = NL;
-
+#define        ASINBUFSIZ      4096
 char   inbufunget[8];
 char   inbuffer[ASINBUFSIZ];
 char   *Ginbufptr = inbuffer;
 char   inbufunget[8];
 char   inbuffer[ASINBUFSIZ];
 char   *Ginbufptr = inbuffer;