I think this solves the MAKEINFO and BISON rooting problems.
[deliverable/binutils-gdb.git] / gas / obj.h
CommitLineData
fecd2382
RP
1/* obj.h - defines the object dependent hooks for all object
2 format backends.
3
4 Copyright (C) 1987, 1990, 1991 Free Software Foundation, Inc.
5
6This file is part of GAS, the GNU Assembler.
7
8GAS is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 1, or (at your option)
11any later version.
12
13GAS is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GAS; see the file COPYING. If not, write to
20the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22/* static const char rcsid[] = "$Id$"; */
23
24#ifdef __STDC__
25
26char *obj_default_output_file_name(void);
27void obj_crawl_symbol_chain(object_headers *headers);
28void obj_emit_relocations(char **where, fixS *fixP, relax_addressT segment_address_in_file);
29void obj_emit_strings(char **where);
30void obj_emit_symbols(char **where, symbolS *symbol_rootP);
31void obj_header_append(char **where, object_headers *headers);
32void obj_read_begin_hook(void);
33void obj_symbol_new_hook(symbolS *symbolP);
34void obj_symbol_to_chars(char **where, symbolS *symbolP);
35
36#ifndef obj_pre_write_hook
37void obj_pre_write_hook(object_headers *headers);
38#endif /* obj_pre_write_hook */
39
40#else
41
42char *obj_default_output_file_name();
43void obj_crawl_symbol_chain();
44void obj_emit_relocations();
45void obj_emit_strings();
46void obj_emit_symbols();
47void obj_header_append();
48void obj_read_begin_hook();
49void obj_symbol_new_hook();
50void obj_symbol_to_chars();
51
52#ifndef obj_pre_write_hook
53void obj_pre_write_hook();
54#endif /* obj_pre_write_hook */
55
56#endif /* __STDC__ */
57
58extern const pseudo_typeS obj_pseudo_table[];
59
60/*
61 * Local Variables:
62 * comment-column: 0
63 * fill-column: 131
64 * End:
65 */
66
67/* end of obj.h */
This page took 0.04329 seconds and 4 git commands to generate.