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.
This commit is contained in:
Mike Frysinger
2016-01-03 01:51:44 -05:00
parent 23ad6f3ec4
commit 2e3d4f4d5d
61 changed files with 257 additions and 79 deletions

View File

@@ -56,7 +56,7 @@ sim_open (kind, callback, abfd, argv)
SIM_OPEN_KIND kind;
host_callback *callback;
struct bfd *abfd;
char **argv;
char * const *argv;
{
SIM_DESC sd = sim_state_alloc (kind, callback);
char c;
@@ -162,8 +162,8 @@ SIM_RC
sim_create_inferior (sd, abfd, argv, envp)
SIM_DESC sd;
struct bfd *abfd;
char **argv;
char **envp;
char * const *argv;
char * const *envp;
{
SIM_CPU *current_cpu = STATE_CPU (sd, 0);
SIM_ADDR addr;