1/* Modifications of internal.h and m68k.h needed by A/UX
2
3   Copyright 2001 Free Software Foundation, Inc.
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; either version 2 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program; if not, write to the Free Software
17   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
18
19   Suggested by Ian Lance Taylor <ian@cygnus.com> */
20
21#ifndef GNU_COFF_AUX_H
22#define GNU_COFF_AUX_H 1
23
24#include "coff/internal.h"
25#include "coff/m68k.h"
26
27/* Section contains 64-byte padded pathnames of shared libraries */
28#undef STYP_LIB
29#define STYP_LIB 0x200
30
31/* Section contains shared library initialization code */
32#undef STYP_INIT
33#define STYP_INIT 0x400
34
35/* Section contains .ident information */
36#undef STYP_IDENT
37#define STYP_IDENT 0x800
38
39/* Section types used by bfd and gas not defined (directly) by A/UX */
40#undef STYP_OVER
41#define STYP_OVER 0
42#undef STYP_INFO
43#define STYP_INFO STYP_IDENT
44
45/* Traditional name of the section tagged with STYP_LIB */
46#define _LIB ".lib"
47
48#endif /* GNU_COFF_AUX_H */
49