diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-01 21:56:42 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-01 21:56:42 +0000 |
commit | 4ed97c9a835c5d05a900e66b997eb6e77a141950 (patch) | |
tree | 3aac1dc65931f319327cf00df82e4fe0efc7b40d /gdb/config/m68k/tm-isi.h | |
parent | 9823e3f4c985eb5919103cc84acf2a6055ed724f (diff) | |
download | gdb-4ed97c9a835c5d05a900e66b997eb6e77a141950.zip gdb-4ed97c9a835c5d05a900e66b997eb6e77a141950.tar.gz gdb-4ed97c9a835c5d05a900e66b997eb6e77a141950.tar.bz2 |
bzero -> memset
Diffstat (limited to 'gdb/config/m68k/tm-isi.h')
-rw-r--r-- | gdb/config/m68k/tm-isi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/m68k/tm-isi.h b/gdb/config/m68k/tm-isi.h index 19a099a..e57f304 100644 --- a/gdb/config/m68k/tm-isi.h +++ b/gdb/config/m68k/tm-isi.h @@ -69,7 +69,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ register CORE_ADDR pc; \ register int insn; \ register int offset; \ - bzero (&frame_saved_regs, sizeof frame_saved_regs); \ + memset (&frame_saved_regs, '\0', sizeof frame_saved_regs); \ if ((frame_info)->pc >= (frame_info)->frame - CALL_DUMMY_LENGTH - FP_REGNUM*4 - 8*12 - 4 \ && (frame_info)->pc <= (frame_info)->frame) \ { next_addr = (frame_info)->frame; \ |