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

@ -290,7 +290,7 @@ map_vmap (bfd *bf, bfd *arch)
struct objfile *obj;
vp = (void*) xmalloc (sizeof (*vp));
bzero (vp, sizeof (*vp));
memset (vp, '\0', sizeof (*vp));
vp->nxt = 0;
vp->bfd = bf;
vp->name = bfd_get_filename(arch ? arch : bf);