xref: /csrg-svn/usr.bin/make/lst.lib/lstFake.c (revision 40411)
1*40411Sbostic /*-
2*40411Sbostic  * lstFake.c --
3*40411Sbostic  *	This is a file whose sole purpose is to force ranlib to
4*40411Sbostic  *	place enough entries in the library's table of contents to
5*40411Sbostic  *	prevent it (the table of contents) from looking like an object
6*40411Sbostic  *	file. As of this writing, the table had 0410 (shared text) entries
7*40411Sbostic  *	in it, so we define five junk variables to up the number beyond
8*40411Sbostic  *	the range of the magic numbers.
9*40411Sbostic  *
10*40411Sbostic  * Copyright (c) 1988 by the Regents of the University of California
11*40411Sbostic  *
12*40411Sbostic  * Permission to use, copy, modify, and distribute this
13*40411Sbostic  * software and its documentation for any purpose and without
14*40411Sbostic  * fee is hereby granted, provided that the above copyright
15*40411Sbostic  * notice appears in all copies.  The University of California nor
16*40411Sbostic  * Adam de Boor makes any representations about the suitability of this
17*40411Sbostic  * software for any purpose.  It is provided "as is" without
18*40411Sbostic  * express or implied warranty.
19*40411Sbostic  *
20*40411Sbostic  *
21*40411Sbostic  */
22*40411Sbostic #ifndef lint
23*40411Sbostic static char *rcsid =
24*40411Sbostic "$Id: lstFake.c,v 1.2 88/11/17 20:52:30 adam Exp $ SPRITE (Berkeley)";
25*40411Sbostic #endif lint
26*40411Sbostic 
27*40411Sbostic int _junk_one__ = 1;
28*40411Sbostic int _junk_two__ = 2;
29*40411Sbostic int _junk_three__ = 3;
30*40411Sbostic int _junk_four__ = 4;
31*40411Sbostic int _junk_five__ = 5;
32