bzero -> memset

This commit is contained in:
K. Richard Pixley
1993-09-01 21:56:42 +00:00
parent 9823e3f4c9
commit 4ed97c9a83
20 changed files with 69 additions and 58 deletions

View File

@@ -153,7 +153,7 @@ frame_find_saved_regs (fi, fsr)
cache_fsr = (struct frame_saved_regs *)
obstack_alloc (&frame_cache_obstack,
sizeof (struct frame_saved_regs));
bzero (cache_fsr, sizeof (struct frame_saved_regs));
memset (cache_fsr, '\0', sizeof (struct frame_saved_regs));
fi->fsr = cache_fsr;