1*21950Sdist /* 2*21950Sdist * Copyright (c) 1980 Regents of the University of California. 3*21950Sdist * All rights reserved. The Berkeley software License Agreement 4*21950Sdist * specifies the terms and conditions for redistribution. 5*21950Sdist */ 6*21950Sdist 7*21950Sdist #ifndef lint 8*21950Sdist static char sccsid[] = "@(#)CONFIG.c 5.1 (Berkeley) 06/04/85"; 9*21950Sdist #endif not lint 10*21950Sdist 116403Speter /* 126403Speter * make sure you are editing 136403Speter * CONFIG.c 146403Speter * editing config.c won't work 156403Speter */ 166403Speter 176403Speter /* 186403Speter * the version of translator 196403Speter */ 206425Speter char *version = "VERSION (DATE)"; 216403Speter 226403Speter /* 236403Speter * the location of the error strings 246403Speter * and the length of the path to it 256425Speter * (in case of execution as a.something) 266403Speter */ 276403Speter char *err_file = "LIBDIR/ERRORSTRINGS"; 286426Speter int err_pathlen = sizeof("LIBDIR/")-1; 296403Speter 306403Speter /* 316403Speter * the location of the short explanation 326403Speter * and the length of the path to it 336403Speter * the null at the end is so pix can change it to pi'x' from pi. 346403Speter */ 356403Speter char *how_file = "LIBDIR/HOWFILE\0"; 366426Speter int how_pathlen = sizeof("LIBDIR/")-1; 376425Speter 386425Speter /* 396425Speter * things about the interpreter. 406425Speter * these are not used by the compiler. 416425Speter */ 4214727Sthien #ifndef PC 436403Speter char *px_header = "LIBDIR/px_header"; /* px_header's name */ 4414727Sthien #endif 4514727Sthien 4615982Saoki #ifndef PXP 476425Speter char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */ 486425Speter char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */ 496425Speter char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */ 5014727Sthien #endif 51