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

void test_bcopy(void *a, void *b, size_t n) {
  bcopy(a, b, n);
}