summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-plugin/pr12758b.c
blob: 5bcf116bc9c0ca7c890d95573febb0ce421b0fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>

int memcmp(const void *cs, const void *ct, size_t count)
{
 const unsigned char *su1, *su2;
 int res = 0;

 for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
  if ((res = *su1 - *su2) != 0)
   break;
 return res;
}