kernel/lib/lz4/lz4hc_compress.c
.. .. @@ -570,7 +570,7 @@ 570 570 *op++ = (BYTE) lastRun; 571 571 } else 572 572 *op++ = (BYTE)(lastRun<<ML_BITS); 573 - memcpy(op, anchor, iend - anchor);573 + LZ4_memcpy(op, anchor, iend - anchor);574 574 op += iend - anchor; 575 575 } 576 576 .. .. @@ -663,7 +663,6 @@ 663 663 /* match referencing will resume from there */ 664 664 ctxPtr->nextToUpdate = ctxPtr->dictLimit; 665 665 } 666 -EXPORT_SYMBOL(LZ4HC_setExternalDict);667 666 668 667 static int LZ4_compressHC_continue_generic( 669 668 LZ4_streamHC_t *LZ4_streamHCPtr,