changeset 9763:7e5d9bf1e56f

bcopy -> memcpy for MINGW32 port
author faust3
date Sun, 30 Mar 2003 20:37:54 +0000
parents 4e2d477981e2
children f5c4c9bb9451
files libmpcodecs/native/RTjpegN.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/native/RTjpegN.c	Sun Mar 30 20:11:25 2003 +0000
+++ b/libmpcodecs/native/RTjpegN.c	Sun Mar 30 20:37:54 2003 +0000
@@ -3795,6 +3795,6 @@
 
 void RTjpeg_yuvrgb8(__u8 *buf, __u8 *rgb, int stride)
 {
- bcopy(buf, rgb, RTjpeg_width*RTjpeg_height);
+ memcpy(rgb, buf, RTjpeg_width*RTjpeg_height);
 }