aboutsummaryrefslogtreecommitdiff
path: root/sim/m32c/mem.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-04-14 07:38:06 +0000
committerMike Frysinger <vapier@gentoo.org>2010-04-14 07:38:06 +0000
commit5558e7e691534636afa28f6bf68bfd83530d8054 (patch)
tree4f830ca8baba1d6598b383d6f82566ef12493cfe /sim/m32c/mem.h
parente1caee70eebe9b2aad731f87a94237568d6fa9ac (diff)
downloadgdb-5558e7e691534636afa28f6bf68bfd83530d8054.zip
gdb-5558e7e691534636afa28f6bf68bfd83530d8054.tar.gz
gdb-5558e7e691534636afa28f6bf68bfd83530d8054.tar.bz2
sim: constify sim_write source buffer (part 2)
As pointed out by Sandra Loosemore, a bunch of targets define sim_write themselves instead of using the common/ code. So constify them too. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/m32c/mem.h')
-rw-r--r--sim/m32c/mem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/m32c/mem.h b/sim/m32c/mem.h
index 5caef25..a36a389 100644
--- a/sim/m32c/mem.h
+++ b/sim/m32c/mem.h
@@ -27,7 +27,7 @@ void mem_put_hi (int address, unsigned short value);
void mem_put_psi (int address, unsigned long value);
void mem_put_si (int address, unsigned long value);
-void mem_put_blk (int address, void *bufptr, int nbytes);
+void mem_put_blk (int address, const void *bufptr, int nbytes);
unsigned char mem_get_pc ();