Commit 5dceb6d2 by Jeff Law

new test (already in c-torture)

From-SVN: r15685
parent bfe87013
int
ts(a)
int a;
{
if (a < 1000 && a > 2000)
return 1;
else
return 0;
}
int
tu(a)
unsigned int a;
{
if (a < 1000 && a > 2000)
return 1;
else
return 0;
}
main()
{
if (ts (0) || tu (0))
abort ();
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