mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
7 lines
102 B
C
7 lines
102 B
C
#include "f2c.h"
|
|
|
|
double
|
|
d_dim (doublereal * a, doublereal * b)
|
|
{
|
|
return (*a > *b ? *a - *b : 0);
|
|
}
|