diff options
| author | Tom Tromey <tom@tromey.com> | 2019-03-30 11:29:17 -0600 |
|---|---|---|
| committer | Tom Tromey <tom@tromey.com> | 2019-03-30 11:36:53 -0600 |
| commit | 268f4c4cd7b229f7f23ebbf6006973ebe0a05888 (patch) | |
| tree | c97516c90aa5bf6ccb54c494c275339d42dc03aa /gdb/mips-fbsd-nat.c | |
| parent | ae2b14c73cd42b067e9687219155ed044210f0c1 (diff) | |
| download | binutils-gdb-268f4c4cd7b229f7f23ebbf6006973ebe0a05888.tar.gz | |
the patchusers/tromey/sort-includes
Diffstat (limited to 'gdb/mips-fbsd-nat.c')
| -rw-r--r-- | gdb/mips-fbsd-nat.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gdb/mips-fbsd-nat.c b/gdb/mips-fbsd-nat.c index 6ed20cedd53..82f29375f70 100644 --- a/gdb/mips-fbsd-nat.c +++ b/gdb/mips-fbsd-nat.c @@ -18,18 +18,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" -#include "inferior.h" -#include "regcache.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> +/* Local includes. */ #include "fbsd-nat.h" -#include "mips-tdep.h" -#include "mips-fbsd-tdep.h" #include "inf-ptrace.h" +#include "inferior.h" +#include "mips-fbsd-tdep.h" +#include "mips-tdep.h" +#include "regcache.h" +#include "target.h" struct mips_fbsd_nat_target final : public fbsd_nat_target { |
