bcopy -> memcpy
[deliverable/binutils-gdb.git] / gdb / convex-xdep.c
index 4b53f0791833c7cccbc1dd1e2c74ea328399bdb4..84bddd2cd89d7021c29eddacf0e9a47c98c619c5 100644 (file)
@@ -747,11 +747,11 @@ select_thread (thread)
   if (thread == inferior_thread)
     return;
 
-  bcopy (registers, thread_regs[inferior_thread], REGISTER_BYTES);
+  memcpy (thread_regs[inferior_thread], registers, REGISTER_BYTES);
   ps.pi_thread = inferior_thread = thread;
   if (have_inferior_p ())
     ioctl (inferior_fd, PISETRWTID, &ps);
-  bcopy (thread_regs[thread], registers, REGISTER_BYTES);
+  memcpy (registers, thread_regs[thread], REGISTER_BYTES);
 }
   
 /* Routine to set or clear a psw bit in the psw and also all psws
This page took 0.022573 seconds and 4 git commands to generate.