diff options
Diffstat (limited to 'sim/common/sim-options.c')
-rw-r--r-- | sim/common/sim-options.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sim/common/sim-options.c b/sim/common/sim-options.c index 8c9b7cf..5991dde 100644 --- a/sim/common/sim-options.c +++ b/sim/common/sim-options.c @@ -20,21 +20,22 @@ 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 <string.h> -#include <stdlib.h> #include <ctype.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <unistd.h> + +#include "bfd.h" +#include "environ.h" +#include "hashtab.h" #include "libiberty.h" + +#include "sim-main.h" #include "sim-options.h" #include "sim-io.h" #include "sim-assert.h" -#include "environ.h" #include "version.h" -#include "hashtab.h" - -#include "bfd.h" /* Add a set of options to the simulator. TABLE is an array of OPTIONS terminated by a NULL `opt.name' entry. |