summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/clang-analyzer-security.insecureAPI.gets.cpp
blob: f096c29de31d634fc769f7285628919fda3192a7 (plain)
1
2
3
4
5
6
#include <stdio.h>

void test() {
  char buff[1024];
  gets(buff);
}