1*40412Sbostic /* 2*40412Sbostic * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. 3*40412Sbostic * All rights reserved. 4*40412Sbostic * 5*40412Sbostic * This code is derived from software contributed to Berkeley by 6*40412Sbostic * Adam de Boor. 7*40412Sbostic * 8*40412Sbostic * Redistribution and use in source and binary forms are permitted 9*40412Sbostic * provided that the above copyright notice and this paragraph are 10*40412Sbostic * duplicated in all such forms and that any documentation, 11*40412Sbostic * advertising materials, and other materials related to such 12*40412Sbostic * distribution and use acknowledge that the software was developed 13*40412Sbostic * by the University of California, Berkeley. The name of the 14*40412Sbostic * University may not be used to endorse or promote products derived 15*40412Sbostic * from this software without specific prior written permission. 16*40412Sbostic * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 17*40412Sbostic * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 18*40412Sbostic * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19*40412Sbostic */ 20*40412Sbostic 21*40412Sbostic #ifndef lint 22*40412Sbostic static char sccsid[] = "@(#)lstFake.c 5.2 (Berkeley) 03/11/90"; 23*40412Sbostic #endif /* not lint */ 24*40412Sbostic 2540411Sbostic /*- 2640411Sbostic * lstFake.c -- 2740411Sbostic * This is a file whose sole purpose is to force ranlib to 2840411Sbostic * place enough entries in the library's table of contents to 2940411Sbostic * prevent it (the table of contents) from looking like an object 3040411Sbostic * file. As of this writing, the table had 0410 (shared text) entries 3140411Sbostic * in it, so we define five junk variables to up the number beyond 3240411Sbostic * the range of the magic numbers. 3340411Sbostic */ 3440411Sbostic 3540411Sbostic int _junk_one__ = 1; 3640411Sbostic int _junk_two__ = 2; 3740411Sbostic int _junk_three__ = 3; 3840411Sbostic int _junk_four__ = 4; 3940411Sbostic int _junk_five__ = 5; 40