xref: /original-bsd/usr.bin/f77/libU77/f77lid_.c (revision bdc0a208)
1 /*-
2  * Copyright (c) 1980 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.proprietary.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)f77lid_.c	5.2 (Berkeley) 04/12/91";
10 #endif /* not lint */
11 
12 /*
13  * f77lid_ - the ID strings for f77 libraries.
14  *
15  * Usage:
16  *	include 'external f77lid' in the declarations in any f77 module.
17  */
18 
19 extern char	libU77_id[], libI77_id[], libF77_id[];
20 char	*f77lid_[] = { libU77_id, libI77_id, libF77_id };
21