blob: 8b6b9371a3e90207ee34fa2b8277d1db13ccdee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef lint
static const char SCCSID[]="@(#)pj_list.c 4.6 94/02/15 GIE REL";
#endif
/* Projection System: default list of projections
** Use local definition of PJ_LIST_H for subset.
*/
#define PJ_LIST_H "pj_list.h"
#include "projects.h"
struct PJ_LIST *pj_get_list_ref()
{
return pj_list;
}
|