blob: 4105408a050731e8746157538f88fdc0a070eb3f [file] [log] [blame]
foo (hp, p, a)
short *hp;
int *p;
int a;
{
hp[10] = a;
p[0] = 10;
if (hp[10] > 0)
return 1;
return 0;
}