Rev 54767 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
int imax2(int x, int y)
{
return (x < y) ? y : x;
}
/* force to be pulled in */
double pythag(double a, double b)
return hypot(a, b);