Commit c1b24d73 by Chandra Chavva

*** empty log message ***

From-SVN: r32054
parent 72579062
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 (0);
exit (0);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment