aboutsummaryrefslogtreecommitdiffstats
path: root/test/mem/memcmp_sing.c
blob: 0d0800e9c7d3e60818af92670473de9fd35fe189 (plain) (blame)
1
2
3
4
5
6
7
#include <mem.h>

static char const buf1[] = "hello";

int main(void) {
  return calt_memcmp(buf1, buf1, sizeof(buf1)) == 0 ? 0 : 1;
}