diff options
Diffstat (limited to 'third_party/libjpeg')
-rw-r--r-- | third_party/libjpeg/jinclude.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/libjpeg/jinclude.h b/third_party/libjpeg/jinclude.h index 56b04fbcc1..65850767f8 100644 --- a/third_party/libjpeg/jinclude.h +++ b/third_party/libjpeg/jinclude.h @@ -76,8 +76,9 @@ #else /* not BSD, assume ANSI/SysV string lib */ //#include <string.h> -#define MEMZERO(target,size) FXSYS_memset((void *)(target), 0, (size_t)(size)) -#define MEMCOPY(dest,src,size) FXSYS_memcpy((void *)(dest), (const void *)(src), (size_t)(size)) +#define MEMZERO(target, size) memset((void*)(target), 0, (size_t)(size)) +#define MEMCOPY(dest, src, size) \ + memcpy((void*)(dest), (const void*)(src), (size_t)(size)) #endif |