blob: 38ecf0a6d95b923cf2cc01488b58be8255de8a1a [file] [log] [blame]
/* { dg-do compile } */
extern char *gets (char *s);
void test_cwe (void)
{
char buf[1024];
gets (buf); /* { dg-warning "never use 'gets' \\\[CWE-242\\\] \\\[STR34-C\\\]" } */
}