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

void test_bzero(void *a, size_t n) {
  bzero(a, n);
}