The R Project SVN R

Rev

Rev 54767 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 54767 Rev 54815
Line 30... Line 30...
30
 
30
 
31
int imax2(int x, int y)
31
int imax2(int x, int y)
32
{
32
{
33
    return (x < y) ? y : x;
33
    return (x < y) ? y : x;
34
}
34
}
35
 
-
 
36
/* force to be pulled in */
-
 
37
double pythag(double a, double b)
-
 
38
{
-
 
39
    return hypot(a, b);
-
 
40
}
-