summaryrefslogtreecommitdiff
path: root/bin86-0.3/ld/globvar.h
blob: 0c382c7c692f4a8ce532134431c658d74a33e72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *   bin86/ld/globvar.h
 *
 *   Copyright (C) 1992 Bruce Evans
 */

/* globvar.h - global variables for linker */

#ifdef EXTERN
EXTERN char hexdigit[];
#else
#define EXTERN
PUBLIC char hexdigit[] = "0123456789abcdef";
#endif
EXTERN unsigned errcount;		/* count of errors */
EXTERN struct entrylist *entryfirst;	/* first on list of entry symbols */
EXTERN struct modstruct *modfirst;	/* data for 1st module */
EXTERN struct redlist *redfirst;	/* first on list of redefined symbols */