git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1409 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2004-03-13 03:40:29 +00:00
parent 54b1658202
commit 5c51c3d9d9
1 changed files with 0 additions and 1 deletions

View File

@ -3,7 +3,6 @@ void *memmove(void *vdest, const void *vsrc, size_t count)
{
const char *src = vsrc;
char *dest = vdest;
int i;
if (dest <= src) {
while (count--) {