mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
8 lines
90 B
C
8 lines
90 B
C
#include "f2c.h"
|
|
|
|
double
|
|
r_dim (real * a, real * b)
|
|
{
|
|
return (*a > *b ? *a - *b : 0);
|
|
}
|