1/* { dg-do compile } */
2/* { dg-options "-w -fpermissive" } */
3
4int strlen (const char *p);
5
6int f (char *p)
7{
8    int x = strlen (p);
9    return x;
10}
11
12