blob: 38ecf0a6d95b923cf2cc01488b58be8255de8a1a (
plain)
1
2
3
4
5
6
7
8
9
|
/* { 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\\\]" } */
}
|