aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-options.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-01-03 01:51:44 -0500
committerMike Frysinger <vapier@gentoo.org>2016-01-06 21:48:59 -0500
commit2e3d4f4d5d386995e99d035354a9e411d1dc0331 (patch)
tree6d149d58208966cc50be708fccc5d5273a702de5 /sim/common/sim-options.h
parent23ad6f3ec4b1086a987ba05e6ea77c131d72875c (diff)
downloadgdb-2e3d4f4d5d386995e99d035354a9e411d1dc0331.zip
gdb-2e3d4f4d5d386995e99d035354a9e411d1dc0331.tar.gz
gdb-2e3d4f4d5d386995e99d035354a9e411d1dc0331.tar.bz2
sim: sim_{create_inferior,open,parse_args}: constify argv/env slightly
2016-01-03 Mike Frysinger <vapier@gentoo.org> * sim-options.c (sim_parse_args): Mark argv array const. * sim-options.h (sim_parse_args): Likewise.
Diffstat (limited to 'sim/common/sim-options.h')
-rw-r--r--sim/common/sim-options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-options.h b/sim/common/sim-options.h
index 7d20382..8086a37 100644
--- a/sim/common/sim-options.h
+++ b/sim/common/sim-options.h
@@ -135,7 +135,7 @@ SIM_RC sim_add_option_table (SIM_DESC sd, sim_cpu *cpu, const OPTION *table);
MODULE_INSTALL_FN standard_install;
/* Called by sim_open to parse the arguments. */
-SIM_RC sim_parse_args (SIM_DESC sd, char **argv);
+SIM_RC sim_parse_args (SIM_DESC sd, char * const *argv);
/* Print help messages for the options. IS_COMMAND is non-zero when
this function is called from the command line interpreter. */