blob: e34ffaf30eb6b8490d93401d6d4e314f22df684b [file] [log] [blame]
a (c)
unsigned char c;
{
unsigned u = c;
if ((int)u < 0)
return 1;
else
return 0;
}
b (x, y)
unsigned x, y;
{
x /= y;
if ((int)x < 0)
return 1;
else
return 0;
}