mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
9 lines
124 B
C
9 lines
124 B
C
#include "f2c.h"
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
r_int (real * x)
|
|
{
|
|
return ((*x > 0) ? floor (*x) : -floor (-*x));
|
|
}
|