blob: 7738139d591cd596865c7346ad738cfc8d407ee0 [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
foo (hp, p, a)
short *hp;
int *p;
int a;
{
hp[10] = a;
p[0] = 10;
if (hp[10] > 0)
return 1;
return 0;
}