blob: 42716afbe0b1901b75745560f5b7c15221c1ded4 [file] [log] [blame]
unsigned short int showbug(unsigned short int *a, unsigned short int *b)
{
*a += *b -8;
return (*a >= 8);
}
int main()
{
unsigned short int x = 0;
unsigned short int y = 10;
if (showbug(&x, &y) != 0)
abort ();
exit (0);
}