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

void test() {
  char buff[1024];
  getpw(2, buff);
}