mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 10:28:45 +00:00
Provide memcmp() for GCC 4.4.0.
svn path=/trunk/; revision=37965
This commit is contained in:
parent
cc0170cf68
commit
14572bf220
1 changed files with 4 additions and 0 deletions
|
@ -194,3 +194,7 @@ int bcmp(const void *b1, const void *b2, size_t len)
|
|||
return RtlCompareMemory(b1, b2, len);
|
||||
}
|
||||
|
||||
int memcmp(const void *b1, const void *b2, size_t len)
|
||||
{
|
||||
return RtlCompareMemory(b1, b2, len);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue