blob: 1953d1e7b64fc64dd9635cc02637d1e15d55fd45 [file] [log] [blame]
void abort(void);
void exit(int);
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);
}