bcopy -> memcpy

This commit is contained in:
K. Richard Pixley 1993-09-01 20:37:15 +00:00
parent e96d50d03c
commit ade40d3153
45 changed files with 1046 additions and 368 deletions

View file

@ -118,7 +118,7 @@ fill_fpregset (fpregsetp, regno)
{
from = (char *) &registers[REGISTER_BYTE (regi)];
to = (char *) &(fpregsetp->fp_r.fp_regs[regi - FP0_REGNUM]);
bcopy(from, to, REGISTER_RAW_SIZE (regi));
memcpy(to, from, REGISTER_RAW_SIZE (regi));
}
}