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

@@ -60,7 +60,7 @@ static int open;
SIM_DESC
sim_open (SIM_OPEN_KIND kind,
struct host_callback_struct *callback,
struct bfd *abfd, char **argv)
struct bfd *abfd, char * const *argv)
{
setbuf (stdout, 0);
if (open)
@@ -144,7 +144,8 @@ sim_load (SIM_DESC sd, const char *prog, struct bfd * abfd, int from_tty)
}
SIM_RC
sim_create_inferior (SIM_DESC sd, struct bfd * abfd, char **argv, char **env)
sim_create_inferior (SIM_DESC sd, struct bfd * abfd,
char * const *argv, char * const *env)
{
check_desc (sd);