aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr102009.c
blob: 5b3a39bd0db9705efc27f705a4a8ddd5abd5fc7b (plain)
1
2
3
4
5
6
7
8
9
10
/* PR tree-optimization/102009 */
/* { dg-do compile } */

void *realloc ();	/* { dg-message "declared here" } */

void *
foo (void *p)
{
  return realloc (p);	/* { dg-warning "too few arguments to built-in function 'realloc' expecting " } */
}