diff options
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index ae0d05b..4354741 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -18,30 +18,30 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "symtab.h" +#include "gdbtypes.h" +#include "demangle.h" +#include "breakpoint.h" -/* Standard C includes. */ +#include "bfd.h" +#include "gdb_obstack.h" #include <ctype.h> -/* Local non-gdb includes. */ -#include "bfd.h" -#include "block.h" -#include "breakpoint.h" -#include "build-id.h" +#include "coff/internal.h" /* Internal format of COFF symbols in BFD */ +#include "libcoff.h" /* FIXME secret internal data from BFD */ +#include "objfiles.h" #include "buildsym-legacy.h" -#include "coff-pe-read.h" -#include "coff/internal.h" -#include "complaints.h" -#include "demangle.h" -#include "dictionary.h" #include "gdb-stabs.h" -#include "gdb_obstack.h" -#include "gdbtypes.h" -#include "libcoff.h" -#include "objfiles.h" -#include "psymtab.h" #include "stabsread.h" -#include "symtab.h" +#include "complaints.h" #include "target.h" +#include "block.h" +#include "dictionary.h" + +#include "coff-pe-read.h" + +#include "psymtab.h" +#include "build-id.h" /* Key for COFF-associated data. */ |