diff options
Diffstat (limited to 'gdb/amd64-fbsd-nat.c')
-rw-r--r-- | gdb/amd64-fbsd-nat.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gdb/amd64-fbsd-nat.c b/gdb/amd64-fbsd-nat.c index 4e52910..cc676d3 100644 --- a/gdb/amd64-fbsd-nat.c +++ b/gdb/amd64-fbsd-nat.c @@ -18,26 +18,23 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "inferior.h" +#include "regcache.h" +#include "target.h" -/* Standard C includes. */ -#include <machine/reg.h> #include <signal.h> +#include <sys/types.h> #include <sys/ptrace.h> #include <sys/sysctl.h> -#include <sys/types.h> #include <sys/user.h> +#include <machine/reg.h> -/* Local non-gdb includes. */ -#include "amd64-bsd-nat.h" -#include "amd64-nat.h" -#include "amd64-tdep.h" -#include "common/x86-xstate.h" #include "fbsd-nat.h" -#include "inferior.h" -#include "regcache.h" -#include "target.h" +#include "amd64-tdep.h" +#include "amd64-nat.h" +#include "amd64-bsd-nat.h" #include "x86-nat.h" - +#include "common/x86-xstate.h" class amd64_fbsd_nat_target final |