diff options
Diffstat (limited to 'otherlibs/win32unix/read.c')
-rw-r--r-- | otherlibs/win32unix/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/win32unix/read.c b/otherlibs/win32unix/read.c index f9f0e0f8a..cc3fdc441 100644 --- a/otherlibs/win32unix/read.c +++ b/otherlibs/win32unix/read.c @@ -35,7 +35,7 @@ value unix_read(value fd, value buf, value ofs, value len) /* ML */ _dosmaperr(GetLastError()); uerror("read", Nothing); } - bcopy(iobuf, &Byte(buf, Long_val(ofs)), numread); + memmove (&Byte(buf, Long_val(ofs)), iobuf, numread); End_roots(); return Val_int(numread); } |