16403Speter /* 26403Speter * make sure you are editing 36403Speter * CONFIG.c 46403Speter * editing config.c won't work 56403Speter */ 66403Speter 7*6425Speter static char *sccsid = "@(#)CONFIG.c 2.2 (Berkeley) 82/04/01"; 86403Speter 96403Speter /* 106403Speter * the version of translator 116403Speter */ 12*6425Speter char *version = "VERSION (DATE)"; 136403Speter 146403Speter /* 156403Speter * the location of the error strings 166403Speter * and the length of the path to it 17*6425Speter * (in case of execution as a.something) 186403Speter */ 196403Speter char *err_file = "LIBDIR/ERRORSTRINGS"; 206403Speter int err_pathlen = sizeof("LIBDIR/"); 216403Speter 226403Speter /* 236403Speter * the location of the short explanation 246403Speter * and the length of the path to it 256403Speter * the null at the end is so pix can change it to pi'x' from pi. 266403Speter */ 276403Speter char *how_file = "LIBDIR/HOWFILE\0"; 286403Speter int how_pathlen = sizeof("LIBDIR/"); 29*6425Speter 30*6425Speter /* 31*6425Speter * things about the interpreter. 32*6425Speter * these are not used by the compiler. 33*6425Speter */ 346403Speter char *px_header = "LIBDIR/px_header"; /* px_header's name */ 35*6425Speter char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */ 36*6425Speter char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */ 37*6425Speter char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */ 38