diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-12-04 20:24:55 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-12-04 22:09:26 -0500 |
commit | 20a8e078cc573f85f7262f7b87be3cf8e8a6424f (patch) | |
tree | 3566c07524f60dfdf62b80576dc9151afb37b3e6 /sim/common/sim-memopt.c | |
parent | 671fac7c4526b61143f860c4800047c3f7ff6fc4 (diff) | |
download | binutils-20a8e078cc573f85f7262f7b87be3cf8e8a6424f.zip binutils-20a8e078cc573f85f7262f7b87be3cf8e8a6424f.tar.gz binutils-20a8e078cc573f85f7262f7b87be3cf8e8a6424f.tar.bz2 |
sim: reorder header includes
We're including system headers after local headers in a bunch of
places, but this leads to conflicts when our local headers happen
to define symbols that show up in the system headers.
Use the more standard order of:
* config.h (via defs.h)
* system headers
* local library headers (e.g. bfd & libiberty)
* sim specific headers
Diffstat (limited to 'sim/common/sim-memopt.c')
-rw-r--r-- | sim/common/sim-memopt.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sim/common/sim-memopt.c b/sim/common/sim-memopt.c index 636f6a9..093958e 100644 --- a/sim/common/sim-memopt.c +++ b/sim/common/sim-memopt.c @@ -20,25 +20,25 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* This must come before any other includes. */ #include "defs.h" -#include "sim-main.h" -#include "sim-assert.h" -#include "sim-options.h" - -#include <string.h> -#include <stdlib.h> #include <errno.h> #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif +#include <stdlib.h> +#include <string.h> +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif #ifdef HAVE_SYS_MMAN_H #include <sys/mman.h> #endif #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif + +#include "sim-main.h" +#include "sim-assert.h" +#include "sim-options.h" /* Memory fill byte. */ static unsigned8 fill_byte_value; |