16403Speter /* 26403Speter * make sure you are editing 36403Speter * CONFIG.c 46403Speter * editing config.c won't work 56403Speter */ 66403Speter 7*6426Speter static char *sccsid = "@(#)CONFIG.c 2.3 (Berkeley) 82/04/01"; 86403Speter 96403Speter /* 106403Speter * the version of translator 116403Speter */ 126425Speter char *version = "VERSION (DATE)"; 136403Speter 146403Speter /* 156403Speter * the location of the error strings 166403Speter * and the length of the path to it 176425Speter * (in case of execution as a.something) 186403Speter */ 196403Speter char *err_file = "LIBDIR/ERRORSTRINGS"; 20*6426Speter int err_pathlen = sizeof("LIBDIR/")-1; 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"; 28*6426Speter int how_pathlen = sizeof("LIBDIR/")-1; 296425Speter 306425Speter /* 316425Speter * things about the interpreter. 326425Speter * these are not used by the compiler. 336425Speter */ 346403Speter char *px_header = "LIBDIR/px_header"; /* px_header's name */ 356425Speter char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */ 366425Speter char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */ 376425Speter char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */ 38