Synch: Prefer memmove() over bcopy().

This commit is contained in:
asmodai 2001-02-07 22:22:57 +00:00
parent 1393f49cab
commit dfe4864cef

View File

@ -358,7 +358,7 @@ gotiac: switch (c) {
char xbuf2[BUFSIZ];
register char *cp;
int n = pfrontp - opfrontp, oc;
bcopy(opfrontp, xptyobuf, n);
memmove(xptyobuf, opfrontp, n);
pfrontp = opfrontp;
pfrontp += term_input(xptyobuf, pfrontp, n, BUFSIZ+NETSLOP,
xbuf2, &oc, BUFSIZ);