summaryrefslogtreecommitdiff
path: root/gdb/machoread.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/machoread.c')
-rw-r--r--gdb/machoread.c28
1 files changed, 18 insertions, 10 deletions
diff --git a/gdb/machoread.c b/gdb/machoread.c
index 84e39fdf885..fb95060512c 100644
--- a/gdb/machoread.c
+++ b/gdb/machoread.c
@@ -19,21 +19,29 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "defs.h"
-#include "symtab.h"
-#include "gdbtypes.h"
+
+/* Standard C++ includes. */
+#include <algorithm>
+#include <string>
+
+/* Local non-gdb includes. */
+#include "aout/stab_gnu.h"
#include "bfd.h"
-#include "symfile.h"
-#include "objfiles.h"
-#include "gdbcmd.h"
-#include "gdbcore.h"
#include "mach-o.h"
-#include "aout/stab_gnu.h"
+
+/* Local subdirectory includes. */
#include "common/vec.h"
-#include "psympriv.h"
+
+/* Local includes. */
#include "complaints.h"
#include "gdb_bfd.h"
-#include <string>
-#include <algorithm>
+#include "gdbcmd.h"
+#include "gdbcore.h"
+#include "gdbtypes.h"
+#include "objfiles.h"
+#include "psympriv.h"
+#include "symfile.h"
+#include "symtab.h"
/* If non-zero displays debugging message. */
static unsigned int mach_o_debug_level = 0;