1: /*	config.h	4.3.2	1996/9/14	*/
   2: 
   3: #ifndef _CONFIG_
   4: #define _CONFIG_
   5: /*
   6:  * Compiler configuration definitions.
   7:  */
   8: 
   9: /*
  10:  * These flags control global compiler operation.
  11:  */
  12: #define BUFSTDERR   1       /* buffer output to stderr */
  13: #define STDPRTREE   1       /* means include prtree */
  14: #define NESTCALLS   1       /* disallow two concurrent store()'s */
  15: #define FLEXNAMES   1       /* arbitrary length identifiers */
  16: #ifdef FORT
  17: #define NOMAIN      1       /* use f1 main routine */
  18: #endif
  19: 
  20: /*
  21:  * Table sizes.
  22:  */
  23: #ifndef FORT
  24: #define TREESZ      270
  25: #else
  26: #define TREESZ      1000        /* parse tree table size */
  27: #endif
  28: #define BCSZ        100     /* break/continue table size */
  29: #define SYMTSZ      915     /* symbol table size */
  30: #define DIMTABSZ    1170        /* dimension/size table size */
  31: #define PARAMSZ     130     /* parameter stack size */
  32: #define SWITSZ      210     /* switch table size */
  33: #define DELAYS      20      /* delayed evaluation table size */
  34: #define NRECUR      (10*TREESZ) /* maximum eval recursion depth */
  35: #define MAXSCOPES   (SYMTSZ/30) /* maximum active scopes */
  36: 
  37: /* in case anyone still uses fixed length names */
  38: #ifndef FLEXNAMES
  39: #define NCHNAM      8       /* significant chars of identifier */
  40: #endif
  41: #endif

Defined macros

BCSZ defined in line 28; used 3 times
BUFSTDERR defined in line 12; used 5 times
DELAYS defined in line 33; used 3 times
DIMTABSZ defined in line 30; used 2 times
MAXSCOPES defined in line 35; used 2 times
NESTCALLS defined in line 14; used 1 times
NOMAIN defined in line 17; used 2 times
NRECUR defined in line 34; used 1 times
PARAMSZ defined in line 31; used 2 times
STDPRTREE defined in line 13; used 1 times
SWITSZ defined in line 32; used 3 times
SYMTSZ defined in line 29; used 13 times
TREESZ defined in line 26; used 7 times
_CONFIG_ defined in line 4; used 1 times
  • in line 3

Usage of this include

config.h used 1 times
Last modified: 1996-09-15
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 2662
Valid CSS Valid XHTML 1.0 Strict