diff options
Diffstat (limited to 'gdb/arm-fbsd-nat.c')
-rw-r--r-- | gdb/arm-fbsd-nat.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gdb/arm-fbsd-nat.c b/gdb/arm-fbsd-nat.c index f85ecc1..f0b0780 100644 --- a/gdb/arm-fbsd-nat.c +++ b/gdb/arm-fbsd-nat.c @@ -18,16 +18,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" -#include "target.h" -#include <sys/types.h> -#include <sys/ptrace.h> +/* Standard C includes. */ #include <machine/reg.h> +#include <sys/ptrace.h> +#include <sys/types.h> -#include "fbsd-nat.h" -#include "arm-tdep.h" +/* Local non-gdb includes. */ #include "arm-fbsd-tdep.h" +#include "arm-tdep.h" +#include "fbsd-nat.h" #include "inf-ptrace.h" +#include "target.h" struct arm_fbsd_nat_target : public fbsd_nat_target { |