X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=crc%2Fcrc32.c;h=657031d47024f93e011479c1959821182fe55533;hb=d179fe19f0f6b56a3335848bfac04df4c758e69f;hp=4afed1af68c0442d4043ccb3a153543c81cbfef5;hpb=13ddcb169f28e87e493f49887c7b06050d008c9c;p=fio.git diff --git a/crc/crc32.c b/crc/crc32.c index 4afed1af..657031d4 100644 --- a/crc/crc32.c +++ b/crc/crc32.c @@ -73,7 +73,7 @@ static const uint32_t crctab[256] = { 0xA2F33668, 0xBCB4666D, 0xB8757BDA, 0xB5365D03, 0xB1F740B4 }; -uint32_t crc32(const void *buffer, unsigned long length) +uint32_t fio_crc32(const void *buffer, unsigned long length) { const unsigned char *cp = (const unsigned char *) buffer; uint32_t crc = 0;