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

@@ -223,7 +223,7 @@ xfer_core_file (memaddr, myaddr, len)
read zeros if reading, or do nothing if writing. */
else
{
bzero (myaddr, i);
memset (myaddr, '\0', i);
returnval = EIO;
}