bcopy -> memcpy
This commit is contained in:
parent
e96d50d03c
commit
ade40d3153
45 changed files with 1046 additions and 368 deletions
|
@ -118,7 +118,7 @@ fill_fpregset (fpregsetp, regno)
|
|||
{
|
||||
from = (char *) ®isters[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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue