summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/clang-analyzer-security.insecureAPI.bcmp.cpp
blob: 8821807518ccf8332af0a9278437f1f8ec9dbd6a (plain)
1
2
3
4
5
#include "structures.h"

int test_bcmp(void *a, void *b, size_t n) {
  return bcmp(a, b, n);
}