fune/tools/clang-tidy/test/clang-analyzer-security.insecureAPI.bcmp.cpp
2018-11-30 06:36:07 -05:00

5 lines
95 B
C++

#include "structures.h"
int test_bcmp(void *a, void *b, size_t n) {
return bcmp(a, b, n);
}