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