16403Speter /* 26403Speter * make sure you are editing 36403Speter * CONFIG.c 46403Speter * editing config.c won't work 56403Speter */ 66403Speter 7*14727Sthien #ifndef lint 8*14727Sthien static char *sccsid = "@(#)CONFIG.c 2.4 (Berkeley) 83/08/19"; 9*14727Sthien #endif 106403Speter 116403Speter /* 126403Speter * the version of translator 136403Speter */ 146425Speter char *version = "VERSION (DATE)"; 156403Speter 166403Speter /* 176403Speter * the location of the error strings 186403Speter * and the length of the path to it 196425Speter * (in case of execution as a.something) 206403Speter */ 216403Speter char *err_file = "LIBDIR/ERRORSTRINGS"; 226426Speter int err_pathlen = sizeof("LIBDIR/")-1; 236403Speter 246403Speter /* 256403Speter * the location of the short explanation 266403Speter * and the length of the path to it 276403Speter * the null at the end is so pix can change it to pi'x' from pi. 286403Speter */ 296403Speter char *how_file = "LIBDIR/HOWFILE\0"; 306426Speter int how_pathlen = sizeof("LIBDIR/")-1; 316425Speter 326425Speter /* 336425Speter * things about the interpreter. 346425Speter * these are not used by the compiler. 356425Speter */ 36*14727Sthien #ifndef PC 376403Speter char *px_header = "LIBDIR/px_header"; /* px_header's name */ 38*14727Sthien #endif 39*14727Sthien 40*14727Sthien #ifdef PXP 416425Speter char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */ 426425Speter char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */ 436425Speter char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */ 44*14727Sthien #endif 45