Rename xor to xor_ to allow build to continue in compliant compilers

This commit is contained in:
darkf 2014-03-31 00:55:27 -07:00
parent 8007693084
commit 61d0e4ee54
3 changed files with 7 additions and 7 deletions

View file

@ -20,7 +20,7 @@ u64 swap64(u64 i)
((i & 0x00ff000000000000) >> 40) | ((i & 0xff00000000000000) >> 56);
}
void xor(unsigned char *dest, unsigned char *src1, unsigned char *src2, int size)
void xor_(unsigned char *dest, unsigned char *src1, unsigned char *src2, int size)
{
int i;
for(i = 0; i < size; i++)
@ -744,4 +744,4 @@ int lz_decompress(unsigned char *out, unsigned char *in, unsigned int size)
delete[] tmp;
return result;
}
}