BSD 4_3_Net_2 development
[unix-history] / usr / src / usr.bin / gas / symbols.h
CommitLineData
192ea830
C
1/* symbols.h -
2 Copyright (C) 1987 Free Software Foundation, Inc.
3
4This file is part of GAS, the GNU Assembler.
5
6GAS is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option)
9any later version.
10
11GAS is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GAS; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20extern struct obstack notes; /* eg FixS live here. */
21
22#define symbol_table_lookup(name) ((symbolS *)(symbol_find (name)))
23
24extern unsigned int local_bss_counter; /* Zeroed before a pass. */
25 /* Only used by .lcomm directive. */
26
27
28extern symbolS * symbol_rootP; /* all the symbol nodes */
29extern symbolS * symbol_lastP; /* last struct symbol we made, or NULL */
30
31extern symbolS abs_symbol;
32
33symbolS * symbol_find();
34void symbol_begin();
35char * local_label_name();
36void local_colon();
37symbolS * symbol_new();
38void colon();
39void symbol_table_insert();
40symbolS * symbol_find_or_make();
41
42/* end: symbols.h */