1*41166Sbostic /*- 2*41166Sbostic * Copyright (c) 1990 The Regents of the University of California. 3*41166Sbostic * All rights reserved. 4*41166Sbostic * 5*41166Sbostic * This code is derived from software contributed to Berkeley by 6*41166Sbostic * Ed James. 7*41166Sbostic * 8*41166Sbostic * %sccs.include.redist.c% 9*41166Sbostic */ 10*41166Sbostic 1137641Sbostic /* 1237641Sbostic * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved. 1337641Sbostic * 1437641Sbostic * Copy permission is hereby granted provided that this notice is 1537641Sbostic * retained on all partial or complete copies. 1637641Sbostic * 1737641Sbostic * For more info on this and all of my stuff, mail edjames@berkeley.edu. 1837641Sbostic */ 1937641Sbostic 20*41166Sbostic #ifndef lint 21*41166Sbostic static char sccsid[] = "@(#)tunable.c 5.4 (Berkeley) 04/30/90"; 22*41166Sbostic #endif /* not lint */ 23*41166Sbostic 2437641Sbostic /* 2537641Sbostic * NUM_SCORES - Number of scores that are kept track of. 2637641Sbostic * Keep this greater than 0, but less than 100. 2737641Sbostic * 4 lines are printed above the score, one below + your prompt, so 2837641Sbostic * to prevent scrolling: 6 + NUM_SCORES <= 24 (lines on an average terminal). 2937641Sbostic */ 3037641Sbostic int NUM_SCORES = 18; 31