mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Rename xor to xor_ to allow build to continue in compliant compilers
This commit is contained in:
parent
8007693084
commit
61d0e4ee54
3 changed files with 7 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue