summaryrefslogtreecommitdiff
path: root/gdb/ppc-fbsd-nat.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/ppc-fbsd-nat.c')
-rw-r--r--gdb/ppc-fbsd-nat.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/gdb/ppc-fbsd-nat.c b/gdb/ppc-fbsd-nat.c
index 648f628cf7e..4c60bc8e5aa 100644
--- a/gdb/ppc-fbsd-nat.c
+++ b/gdb/ppc-fbsd-nat.c
@@ -18,24 +18,26 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "defs.h"
-#include "gdbcore.h"
-#include "inferior.h"
-#include "regcache.h"
-#include <sys/types.h>
-#include <sys/procfs.h>
-#include <sys/ptrace.h>
-#include <sys/signal.h>
+/* Standard C includes. */
#include <machine/frame.h>
#include <machine/pcb.h>
#include <machine/reg.h>
+#include <sys/procfs.h>
+#include <sys/ptrace.h>
+#include <sys/signal.h>
+#include <sys/types.h>
+/* Local includes. */
+#include "bsd-kvm.h"
#include "fbsd-nat.h"
+#include "gdbcore.h"
#include "gregset.h"
-#include "ppc-tdep.h"
-#include "ppc-fbsd-tdep.h"
#include "inf-ptrace.h"
-#include "bsd-kvm.h"
+#include "inferior.h"
+#include "ppc-fbsd-tdep.h"
+#include "ppc-tdep.h"
+#include "regcache.h"
struct ppc_fbsd_nat_target final : public fbsd_nat_target
{