[444] | 1 | /* Modifications of internal.h and m68k.h needed by A/UX |
---|
| 2 | |
---|
| 3 | Copyright 2001, 2010 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 3 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, |
---|
| 18 | MA 02110-1301, USA. |
---|
| 19 | |
---|
| 20 | Suggested by Ian Lance Taylor <ian@cygnus.com> */ |
---|
| 21 | |
---|
| 22 | #ifndef GNU_COFF_AUX_H |
---|
| 23 | #define GNU_COFF_AUX_H 1 |
---|
| 24 | |
---|
| 25 | #include "coff/internal.h" |
---|
| 26 | #include "coff/m68k.h" |
---|
| 27 | |
---|
| 28 | /* Section contains 64-byte padded pathnames of shared libraries */ |
---|
| 29 | #undef STYP_LIB |
---|
| 30 | #define STYP_LIB 0x200 |
---|
| 31 | |
---|
| 32 | /* Section contains shared library initialization code */ |
---|
| 33 | #undef STYP_INIT |
---|
| 34 | #define STYP_INIT 0x400 |
---|
| 35 | |
---|
| 36 | /* Section contains .ident information */ |
---|
| 37 | #undef STYP_IDENT |
---|
| 38 | #define STYP_IDENT 0x800 |
---|
| 39 | |
---|
| 40 | /* Section types used by bfd and gas not defined (directly) by A/UX */ |
---|
| 41 | #undef STYP_OVER |
---|
| 42 | #define STYP_OVER 0 |
---|
| 43 | #undef STYP_INFO |
---|
| 44 | #define STYP_INFO STYP_IDENT |
---|
| 45 | |
---|
| 46 | /* Traditional name of the section tagged with STYP_LIB */ |
---|
| 47 | #define _LIB ".lib" |
---|
| 48 | |
---|
| 49 | #endif /* GNU_COFF_AUX_H */ |
---|